Skip to content

Instantly share code, notes, and snippets.

@ganeshkbhat
Created October 4, 2018 03:01
Show Gist options
  • Select an option

  • Save ganeshkbhat/e0ebcbd689a5f48d226f72ad2d415e03 to your computer and use it in GitHub Desktop.

Select an option

Save ganeshkbhat/e0ebcbd689a5f48d226f72ad2d415e03 to your computer and use it in GitHub Desktop.
ExpressJS Series: Getting the req.method
app.post("/someUrl", function(req, res) {
 res.send(200).send({result: 'Your request method', method: req.method});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment