Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Ankit D 9c8254f080
Add node.js content (#1937)
2 years ago
..
100-event-loop.md Add event loop content (#1784) 2 years ago
101-event-emitter.md Add content for Event Emitter (#1872) 2 years ago
102-promises.md Add promises resources (#1753) 3 years ago
103-async-await.md Add node.js content (#1937) 2 years ago
104-callbacks.md Add content for callback (#1830) 2 years ago
105-set-timeout.md Add content for setTimeout (#1860) 2 years ago
106-set-interval.md Add setInterval content (#1861) 2 years ago
107-set-immediate.md Add setImmediate function (#1902) 2 years ago
108-process-next-tick.md Fix broken build 2 years ago
readme.md Add node.js content (#1937) 2 years ago

readme.md

Nodejs async programming

Asynchronous code means that things can happen independently of the main program flow, async functions in JavaScript are processed in the background without blocking other requests. It ensures non-blocking code execution. Asynchronous code executes without having any dependency and no order. This improves the system efficiency and throughput. Making web apps requires knowledge of asynchronous concepts since we will be dealing with actions that require some time to get processed.

Free Content Introduction to Async JS Asynchronous Vs Synchronous Programming