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
4. Angular Project Creation and Running.

1. Downloading and installing Node


1. Visit following link and download node 
Link: 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 version
command: node -v 
4. 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 command 
Command: npm install -g @angular/cli
3. After installation is completed use the following command to check version of Angular
Command : ng -v

4. Angular Project Creation and Running



1. Create Angular Project with following command
Command: ng new <PROJECT_NAME> 
2. After completion and installation of project move inside the project using following command
Command: cd <PROJECT_NAME>
3. To run the Angular Project use the following command
Command: ng serve
4. Open the browser and type following URL 
URL: localhost:4200
5. Sample Project is displayed in the chrome.

Comments

Popular posts from this blog

Pushing Form Data Into Fire base

Updating an existing Object in Angular using firebase