Useful links for javascript and nodejs

To understand the event loop

Node.js is a single-threaded application, but it can support concurrency via the concept of event and callbacks. Every API of Node.js is asynchronous and being single-threaded, they use async function calls to maintain concurrency. Node uses observer pattern. Node thread keeps an event loop and whenever a task gets completed, it fires the corresponding event which signals the event-listener function to execute.

To understand the basics of the event loop please refers these links which are very useful for to under stand the event loop deeply.











Javascript tutorials links



Nodejs tutorials best links


Nodejs instrumentation tutorials links















Comments

Popular posts from this blog

Proxy setting in java

Using logstash to import csv json files into elasticsearch

Kibana 4 Installation and Run as a service in ubuntu