DEV Community

Discussion on: Node.js Under The Hood #1 - Getting to know our tools

Collapse
 
victorteodoro profile image
Victor Teodoro

Great article! Very few people really know what goes on under node's hood until they have to actually implement some native modules for some specialized domain.

As a note, libuv is mostly written in C, not C++ (I think it was a typo tho :) ). There is a very didactic intro to it provided by the libuv team itself here: nikhilm.github.io/uvbook/An%20Intr.... You have to know some C first to use it but you don't need to be a specialist.

Collapse
 
_staticvoid profile image
Lucas Santos

Awesome man! Thanks for the correction, will fix it as soon as possible :D