DEV Community

IgosProjects
IgosProjects

Posted on

How to make apps with astro

Astro is a framework for making applications with the .astro format simple right well today we will be making a basic astro app so lets get started.
Firstly lets make our project so run

npm create astro@latest

like this

Image

after that we can open our project so run

cd yourprojectname

so now that we are in the project run

code ./

like this

Image

.
Now lets run the development server by running

npx astro dev

now here you have it a brand new astro app.

Happy coding

Top comments (0)