One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <div class="blog-slider"> | |
| <div class="blog-slider__wrp swiper-wrapper"> | |
| <div class="blog-slider__item swiper-slide"> | |
| <div class="blog-slider__img"> | |
| <img src="https://res.cloudinary.com/muhammederdem/image/upload/q_60/v1535759872/kuldar-kalvik-799168-unsplash.webp" alt=""> | |
| </div> | |
| <div class="blog-slider__content"> | |
| <span class="blog-slider__code">26 December 2019</span> | |
| <div class="blog-slider__title">Lorem Ipsum Dolor</div> |
| { | |
| // Remember: main editor settings | |
| "editor.fontSize": 20, | |
| "editor.formatOnPaste": true, | |
| "editor.fontFamily": "dank mono", | |
| "editor.fontWeight": "500", | |
| "editor.lineHeight": 40, | |
| "editor.tabSize": 2, | |
| "editor.rulers": [120], | |
| "editor.minimap.enabled": false, |
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com