Installation and Setup Fire Base with Angular
Fire base with Angular
Software's Required
1. Node (Latest Version)
2. Visual studio / Atom / Sublime Text
3. Angular 6 Setup and Installation
3. Angular 6 Setup and Installation
4. Angular Project Creation and Running.
1. Downloading and installing Node
1. Visit following link and download nodeLink: https://nodejs.org/en/download/2. After download install by following the steps. 3. Once installed open command prompt and type following command to check node versioncommand: node -v4. Note : Node version should be more that 6+ version.
2. Downloading and Installing Visual studio / Atom / Sublime Text
1. Visit following link for Visual Studio Code
Link: https://code.visualstudio.com/download
2. Visit following link for Atom
Link : https://atom.io/
3. Visit following link for Sublime Text
Link: https://www.sublimetext.com/3
4. After downloading follow the steps according to the editor you have downloaded.
3. Angular 6 Setup and Installation
1. Open your command prompt
2. Run the following commandCommand: npm install -g @angular/cli3. After installation is completed use the following command to check version of AngularCommand : ng -v
4. Angular Project Creation and Running
1. Create Angular Project with following commandCommand: ng new <PROJECT_NAME>2. After completion and installation of project move inside the project using following commandCommand: cd <PROJECT_NAME>3. To run the Angular Project use the following commandCommand: ng serve4. Open the browser and type following URLURL: localhost:42005. Sample Project is displayed in the chrome.
Comments
Post a Comment