DEV Community

Gabriel Valin
Gabriel Valin

Posted on

NodeJS - Fundamentals

NODEJS

  • Open Source platform, allow the execution of javascript language in server-side.

  • Single Thread (v8) with Thread Pool (libuv c++) and group of modules.

  • Event Loop (Call Stack)

  • NoN-Blocking I/O

  • Self Modules (http, fs, dns, buffer, etc..)

What's Event Loop?

luiztools

  • the last one in is the first one out!

Top comments (0)