Node.js : Setting Up Node.js "Hello World" Node.js

So according to Node.js's official website http://www.nodejs.org , NodeJs is “a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.” So what does that mean in English? Well it basically means that Node.js enables developers to use JavaScript like it's a server. Allowing you to do JavaScript server-side like development without the backend servers. Under the hood of Node.js is the virtual machine call V8. If you need something lightweight Node.js should be able to fit the bill especially on the client side. Here are the steps to step up Node: 1. Go to the website https://nodejs.org/ 2. Click on the "Downloads" tab 3. Download the install file for the your system 4. Double click on the .msi fil...