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
Prerequisites: To install the Node.js and Angular CLI please click in the below mentioned link. http://angularworldz.blogspot.in/2018/01/advantages-of-using-angular-cli.html Once Node.js and Angular CLI Installed please follow the below mentioned steps to create an angular 5 project. Generating and Serving Angular 5 Project: 1. Open Node.js command prompt as an administrator. 2. Install Angular CLI latest version ( if not installed ) using the below mentioned command. npm install -g @angular/cli@latest 3. Make directory to create a Angular Project mkdir Angular5Practice 4. Change the directory path to Angular5Practice 5. To see the list of available commands in the Angular CLI use the below mentioned command. ng help 6. To generate and serve an angular project using the below mentioned command. a) ng new Angular5Demo Change the dir...