Skip to main content

How to open the Angular 5 project in visual studio code using Angular CLI

Please follow the below link to Generate and Serve an Angular 5 Project.
http://angularworldz.blogspot.in/2018/01/create-angular-5-project-using-angular.html

Please follow the below mentioned steps to open an Angular5 project code in visual studio code.

1. Open the Node.js command prompt as an administrator.
2. Change the directory path to where the basic project code exists.
3. Use the below mentioned command to open the code in Visual Studio Code.
    Code . and Click Enter


Comments

Popular posts from this blog

Advantages of using Angular CLI

Angular CLI is an command line interface tool for Angular. Installation: 1. Prerequisite to install and run Angular CLI Commands    Need to install node.js using the below mentioned link  https://nodejs.org/en/download/ 2. To install Angular CLI a) Start -- Search Node and select Node.js command prompt b) Right click on the Node.js command prompt and run it as an administrator c) Then Node.js command prompt will like this. d)Install Angular CLI using the below mentioned command. npm install -g @angular/cli@latest e) Use the below mentioned command to check currently installed Angular CLI version   ng -v