DEV Community

Pradeep Gowda
Pradeep Gowda

Posted on

 

c9x edit

In order to compile c9x edit on a Mac, you will have to do the following:

export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig
make
./obj/edit
Enter fullscreen mode Exit fullscreen mode

this will launch the ed window using X11 (XQuartz).

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.