computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
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.
|
2 years ago | |
---|---|---|
.. | ||
100-event-loop.md | 2 years ago | |
101-event-emitter.md | 2 years ago | |
102-promises.md | 3 years ago | |
103-async-await.md | 2 years ago | |
104-callbacks.md | 2 years ago | |
105-set-timeout.md | 2 years ago | |
106-set-interval.md | 2 years ago | |
107-set-immediate.md | 2 years ago | |
108-process-next-tick.md | 2 years ago | |
readme.md | 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