npm i eslint prettier eslint-plugin-prettier eslint-config-prettier eslint-plugin-node eslint-config-airbnb eslint-plugin-jsx-a11y eslint-plugin-import eslint-plugin-react --save-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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