DEV Community

Coding is Love
Coding is Love

Posted on • Originally published at codingislove.com on

 

RoughNotation.js, A JavaScript library to create and animate annotations | Spotlight of the day

Rough Notation uses RoughJS to create a hand-drawn look and feel. Elements can be annotated in a number of different styles. Animation duration and delay can be configured, or just turned off.

Rough Notation is 3.8kb in size when gzipped, and the code is available on GitHub.

Reference links:

The post RoughNotation.js, A JavaScript library to create and animate annotations | Spotlight of the day appeared first on Coding is Love.

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.