How to Keep Node Updated

To update installed node package
1.) Delete nodejs folder from C:\Program Files (x86)\nodejs or location where its installed
2.) Download latest installer from https://nodejs.org/en/download/ and reinstall

To Update angular command line interface

npm uninstall -g angular-cli
npm cache clean
npm install -g angular-cli@latest

Node.Js Part 1

Node.Js

 

On popular demand from many of my student and fellow developers, I am starting this series on Node.js . Focus will be on developing Node.js applications using Visual studio and side by side explaining things about other open source frameworks that go hand in hand with Node e.g. Bower, Grunt, Yeoman, Jasmine etc.

What is Node.js?

Node.js is a server side JavaScript framework. A server side framework means not only web framework like PHP,Asp.net but also something using which you can create your own servers like Apache or IIS. Using Node.js we can create networking applications on server as well. Unlike some other frameworks Node.js is completely Open source. Continue reading