Quickstart with Angular 2/4
Node platform Developing web application using Angular 2/4 goes easy with Node.js platform. It does not mean that Angular based web apps can be build using Node.js, we can build with any other program management tools like Maven or Gradle. However, Node.js provides easy way of building Angular 2 application. First this we need to do is to make sure Node is installed in our system. The following urls will take you to the download page of Node.js for appropriate OS. Windows 64 : https://nodejs.org/dist/v6.11.0/node-v6.11.0-x64.msi OS X : https://nodejs.org/dist/v6.11.0/node-v6.11.0-darwin-x64.tar.gz Installing Angular CLI package Angular CLI is a command line interface for developing Angular 2 projects. The command line tool will help to create project and its components from few commands. Let us see how to install the Angular CLI into Windows system. $ node –-version $ v6.9.2 $ npm install –g @angular/cli@latest ...
Comments
Post a Comment