DEV Community

Said Olano
Said Olano

Posted on

Creating your first Angular app

Here I go again (like the song). In this post, I am sharing the steps to create your first Angular app.

Run this command to create an Angular project:

ng new proyecto-angular
Enter fullscreen mode Exit fullscreen mode

Move into your new project directory:

cd proyecto-angular
Enter fullscreen mode Exit fullscreen mode

Start the Angular server/project:

npm start
Enter fullscreen mode Exit fullscreen mode

Finally, you will get this:

Top comments (0)