Create angular project
First will install node.js in local system then install angular cli to global in local system
https://nodejs.org/en/download
https://code.visualstudio.com/
after install Visual Studio Code, node js and @angular/cli
we can create angular application through visual studio code
ng new my-project
cd my-project
ng serve (or) ng serve --open (or) ng serve -o
if given ng serve command will run angular application but not open in browser
ng serve --open (or) ng serve -o
when your given command will open angular application in browser
localhost://4200 default angular application local url
No comments:
Post a Comment