Skip to content

Instantly share code, notes, and snippets.

@elpuas
Created April 1, 2021 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elpuas/aadf883b6624a07f96846002c96fb483 to your computer and use it in GitHub Desktop.
Save elpuas/aadf883b6624a07f96846002c96fb483 to your computer and use it in GitHub Desktop.
// GET method route
app.get('/', function (req, res) {
res.send('GET request to the homepage')
})
// POST method route
app.post('/', function (req, res) {
res.send('POST request to the homepage')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment