DEV Community

suntong
suntong

Posted on

 

Where are my unfinished posts?

I started to write a post this morning but set its published: to false, as I haven't finished it.

But now, when I try to continue, I can't find it anymore -- the link https://dev.to/suntong only list my published posts.

Where can I find my unpublished posts?

Oldest comments (3)

Collapse
 
analizapandac profile image
Ana Liza Pandac • Edited

Go to Dashboard - dev.to/dashboard to see it.

Collapse
 
suntong profile image
suntong

Ah, yeah, thanks!

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

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.