For further advanced reading you may want to prefer REST API using express . I have started learning Node.JS and for web apps most popular ExpressJS framework. Well few call it big library as well. As learner does not matter whether big library or framework, let’s start exploring. While exploring express realised that one ofContinueContinue reading “Understanding routing of expressJS in Node.JS”
Tag Archives: Nodejs
Setup Express and run first application in Node.js
In this post we will take a step by step look in setting up Express and creating first application. I assume that you have already installed Node. If not then go ahead and install from here Once node.js is successfully installed, you can install Express framework by running npm install express on command prompt. AfterContinueContinue reading “Setup Express and run first application in Node.js”
Working with OS Module in Node.JS
In this post we will take a quick look on OS module in Node.js. OS module is to work with OS component. It provides some functionality to work with Operating System. Using this module you can get following information like below, OS target version Host name OS temp folder Total memory in system Free memoryContinueContinue reading “Working with OS Module in Node.JS”
Events in NodeJS : Write your first event
Setup Environment on Windows machine for Node.js Development: Part 1 Let us simplify “Hello World” Node.js Example and EventLoop : Part 2 Each objects in NodeJS emit an asynchronous event. That event is handled by an object EventEmitter. EventEmitter is underneath every object. EventEmitter object, Takes care of event being emitted by Node object HandlesContinueContinue reading “Events in NodeJS : Write your first event”