0

What is the difference in PUT and POST implementation in Node.js, Express implementation (server-side):

I mean:

app.put(function (req, res) {
//implementation

})

app.post(function (req, res) {
//implementation

})

I am asking for a illustrative example with POST and PUT. An example to show when to use POST but not PUT and vice versa

0 Answers0