Home > other >  How to run developement server in new angular project?
How to run developement server in new angular project?

Time:11-08

I have created a new angular project but i don't known it run.

Please help me.

I have created a new angular project but i don't known it run.

Please help me.

CodePudding user response:

You can run it with using ng serve.

CodePudding user response:

You can run the app using this command. ng serve As per the comment, if you are getting 'ng' is not recognized command', Check whether you have installed angular CLI. npm install -g @angular/cli. Use this command to install angular cli. For more refer this https://github.com/angular/angular-cli

  • Related