Posts

Showing posts from April, 2019

Angular 7 application within 5 minutes.

Image
Here I am showing a Angular 7 Hello World application within 2 minutes . In this tutorial I will show you the demo application without brief descriptions . Although I am not describing about the application briefly but it is very interesting . You will just see how easily we can build the Angular 7 application just by few commands.   So before starting this tutorial you should have some basic things. Your machine should have Node.Js and NPM installed . So Lets get started . Step-1 :  Please open command prompt . Step -2 : Then please check the  node.js version by this below command node -v (node.js version should be 8.x or 10.x ) If this given version is not there then please update it below commands npm install npm@latest -g Step-3 : Then please install Angular CLI. Please run the below commands. npm install -g @angular/cli Step- 4 : In this steps just create a work space to create a new angular project . To create the new work space please r...