Express routing

PHOTO EMBED

Sat Aug 10 2024 06:35:17 GMT+0000 (Coordinated Universal Time)

Saved by @piyushkashyap #javascript

// GET method route
app.get('/', (req, res) => {
  res.send('GET request to the homepage')
})

// POST method route
app.post('/', (req, res) => {
  res.send('POST request to the homepage')
})
content_copyCOPY

https://expressjs.com/en/guide/routing.html