Shahid

Shahid

Founder of Codeforgeek. Technologist. Published Author. Engineer. Content Creator. Teaching Everything I learn!

Nodejs monitoring using PM2

Nodejs monitoring

Nodejs monitoring in production server is very important and critical part in overall Nodejs application development. Unlike staging or development scenario, if anything goes wrong in production server it directly affects the end-user and most importantly your client. In this…

JSON API validation in nodejs

is your payload valid

Building REST APIs comes with many challenges and one of them is making sure that incoming payload from client is valid and is in proper format before sending it to proper processing or doing some high cost operation such as…

Meteor Routing tutorial using iron:router

Meteor Routing can be achieved using famous package available at atmospherejs ( Meteor package registry ) called iron-router. It provides both front-end and back-end routing facility. In this tutorial I am going to cover : Installing and configuring iron router.…

Node v4.0.0 is Stable and ready to use.

Node V4.0.0 is released for public use which includes merging io.js codebase and upgrading v8 version as a major change. Node 4.0.0 contains ES6 features such as classes, generators, promises as a ready to use for production. Here are some…

How nodejs event loop works

One of the best advantage of Node.js over other Server side technologies is executing asynchronous code. But how Node.js executes it ? You may have heard of Event loop which helps JavaScript to execute asynchronous code and this post is…

Introduction to Meteor.js framework

Meteor is complete platform to build real-time web and mobile applications using JavaScript. Meteor is not framework or library which meant to help you to solve specific problems like Express framework to provide painless web development in Node.js OR django…