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
https://medium.com/javascript-scene/learn-javascript-b631a4af11f2
Top 5 patterns in javascript
http://sking7.github.io/articles/389411742.html
Garbage collections in Javascript
Top 5 patterns in javascript
http://sking7.github.io/articles/389411742.html
Garbage collections in Javascript
Nodejs tutorials best links
Nodejs instrumentation tutorials links
https://docs.google.com/presentation/d/1M2z84SRXS5kZMSUPRRPUx8EdF2TxfSW2bUV0_P3i59U/edit?usp=sharing
Comments
Post a Comment