Skip to content

Commit 5da119f

Browse files
committed
Update README.md
1 parent a24dbaf commit 5da119f

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
| 75. |[How to use locale (i18n) in node js?](#q-how-to-use-locale-i18n-in-node-js)|
8686
| 76. |[How to Implement Memcached in Nodejs?](#q-how-to-implement-memcached-in-nodejs)|
8787
| 77. |[Explain Error Handling in node js?](#q-explain-error-handling-in-node-js)|
88+
| 78. |[How to generate and verify checksum of the given string in Node.js](#q-how-to-generate-and-verify-checksum-of-the-given-string-in-node-js)|
8889

8990
<br/>
9091

@@ -2310,7 +2311,7 @@ eventEmitter.emit('Sum', '10', '20');
23102311
<b><a href="#">↥ back to top</a></b>
23112312
</div>
23122313

2313-
## Q. ***Explain RESTful Web Services in Node.js?***
2314+
## 66Q. ***Explain RESTful Web Services in Node.js?***
23142315

23152316
REST stands for REpresentational State Transfer. REST is web standards based architecture and uses HTTP Protocol.
23162317
It is an architectural style as well as an approach for communications purposes that is often used in various web services development. A REST Server simply provides access to resources and REST client accesses and modifies the resources using HTTP protocol.
@@ -2445,7 +2446,7 @@ var server = app.listen(3000, function () {
24452446
<b><a href="#">↥ back to top</a></b>
24462447
</div>
24472448

2448-
## Q. ***How to handle file upload in Node.js?***
2449+
## 67Q. ***How to handle file upload in Node.js?***
24492450

24502451
* **express**: Popular web framework built on top of Node.js, used for creating REST-API.
24512452
* **body-parser**: Parse incoming request bodies in a middleware
@@ -2543,7 +2544,7 @@ app.listen(3000, function(){
25432544
<b><a href="#">↥ back to top</a></b>
25442545
</div>
25452546

2546-
## Q. ***Explain the terms body-parser, cookie-parser, morgan, nodemon, pm2, serve-favicon, cors, dotenv, fs-extra, moment in Express JS?***
2547+
## 68Q. ***Explain the terms body-parser, cookie-parser, morgan, nodemon, pm2, serve-favicon, cors, dotenv, fs-extra, moment in Express JS?***
25472548

25482549
**a) body-parser**
25492550

@@ -2853,7 +2854,7 @@ moment().subtract(3, 'days').calendar(); // Last Wednesday at 3:18 PM
28532854
<b><a href="#">↥ back to top</a></b>
28542855
</div>
28552856

2856-
## Q. ***How does routing work in Node.js?***
2857+
## 69Q. ***How does routing work in Node.js?***
28572858

28582859
Routing defines the way in which the client requests are handled by the application endpoints. We define routing using methods of the Express app object that correspond to HTTP methods; for example, `app.get()` to handle `GET` requests and `app.post` to handle `POST` requests, `app.all()` to handle all HTTP methods and `app.use()` to specify middleware as the callback function.
28592860

@@ -2974,7 +2975,7 @@ module.exports = router
29742975
<b><a href="#">↥ back to top</a></b>
29752976
</div>
29762977

2977-
## Q. ***How node.js prevents blocking code?***
2978+
## 70Q. ***How node.js prevents blocking code?***
29782979

29792980
**Blocking vs Non-blocking**
29802981

@@ -3004,7 +3005,7 @@ moreWork(); // will run before console.log
30043005
<b><a href="#">↥ back to top</a></b>
30053006
</div>
30063007

3007-
## Q. ***What is difference between promises and async-await in Node.js?***
3008+
## 71Q. ***What is difference between promises and async-await in Node.js?***
30083009

30093010
**1. Promises**
30103011

@@ -3054,13 +3055,13 @@ async function logFetch(url) {
30543055
<b><a href="#">↥ back to top</a></b>
30553056
</div>
30563057

3057-
#### Q. ***How to use JSON Web Token (JWT) for authentication in Node.js?***
3058-
#### Q. ***How to build a microservices architecture with Node.js?***
3059-
#### Q. ***How to use Q promise in Node.js?***
3060-
#### Q. ***How to use locale (i18n) in Node.js?***
3061-
#### Q. ***How to implement Memcached in Node.js?***
3062-
#### Q. ***Explain error handling in Node.js?***
3063-
#### Q. ***How to generate and verify checksum of the given string in Node.js***
3058+
#### 72Q. ***How to use JSON Web Token (JWT) for authentication in Node.js?***
3059+
#### 73Q. ***How to build a microservices architecture with Node.js?***
3060+
#### 74Q. ***How to use Q promise in Node.js?***
3061+
#### 75Q. ***How to use locale (i18n) in Node.js?***
3062+
#### 76Q. ***How to implement Memcached in Node.js?***
3063+
#### 77Q. ***Explain error handling in Node.js?***
3064+
#### 78Q. ***How to generate and verify checksum of the given string in Node.js***
30643065

30653066
<div align="right">
30663067
<b><a href="#">↥ back to top</a></b>

0 commit comments

Comments
 (0)