Best resources to learn node.js
1 min read

Best resources to learn node.js

What exactly is Node.js?

This medium post explains what exactly node.js is, what is non blocking I/O, what is Event loop and why node.js.

Read the post

JavaScript Tutorial

To learn and expertise Node.js, one must have good knowledge vanila JavaScript. http://javascript.info/ is a great place to basic and advanced concepts.

The Node.js Event Loop, Timers, and process.nextTick()

It is very important to understand what is Event loop, Timers abd process.nextTick. A node.js developer must be aware of these concepts to write better programs.

Read the post

Node.js best practices

This git repo contains collection of best practices for node.js. This repo has many contributors and they are bringing best practices together in nice content. Also contents are available in multiple languages.

Read the post

JavaScript: What the heck is a Callback?

Knowledge of callback is very important in JavaScript and in Node.js. Good knowledge of callback will make a better JavaScript programmer.

Read the post

The definitive Node.js handbook

A guide to learn node.js.

Read the post

10 Things I Regret About Node.js - Ryan Dahl

A video by Ryan Dahl, the inventor of Node.js.

Watch youtube video

Top 5 Node.js Frameworks to Increase Coding Productivity

A lot of frameworks are coming on the way but few have made impact.

Read the post

Tools, Techniques, And Tips For Making High-Performance Node.js Servers

This blog explains few tools which can be used for making high performance node.js server.

Read the post

Async/Await

Async/Await is very important feature of ES6. This is a very promising solution to the callback hell.

Read the post