RINSE
The Node.js event loop and how it works.
https://github.com/vmlf01/nodejs-rinse-repeat
TopTal Developer @ KWAN
the motive behind node.js
node architecture
the event loop
must see
callback queue
event loop
v8 engine
worker thread
client app
client app
worker thread
client app
* it's got memory
console.log('Hello World');
$ node index.js
setTimeout(function () {
console.log('Hello World');
}, 5000);
$ node index.js
setTimeout
thank you!
RINSE