DEV Community

Cover image for Luos packages
Emanuel Allely for Luos

Posted on • Originally published at luos.io

 

Luos packages

🗳️ Packages represent blocks of code. They contain independent functionalities which will be run by Luos engine.

Luos separates monolithic code into independent blocks called packages that can communicate with each other using high-level APIs. This helps with development, debugging, and maintainability when the code base grows and facilitates collaboration with other developers.

⏩ Learn more about this

Top comments (1)

Collapse
 
thomasbnt profile image
Thomas Bnt

Hi there, we encourage authors to share their entire posts here on DEV, rather than mostly pointing to an external link. Doing so helps ensure that readers don’t have to jump around to too many different pages, and it helps focus the conversation right here in the comments section.

If you choose to do so, you also have the option to add a canonical URL directly to your post.

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.