Posts by dpetrini • 126 points
1 post
-
1
votes1
answer956
viewsA: Why and when to use "res.send()" in an application? Nodejs and Express
The res.send command is for the server to send a response to the web client. In express it can be used to respond in a server route, as in the example below to return the server result upon that…