Skip to content

Instantly share code, notes, and snippets.

@riccardogiorato
Created April 19, 2021 18:59
Show Gist options
  • Save riccardogiorato/5c84798b71166fa21fc7d81316ee1b83 to your computer and use it in GitHub Desktop.
Save riccardogiorato/5c84798b71166fa21fc7d81316ee1b83 to your computer and use it in GitHub Desktop.
hello world for vercel api lambda functions
module.exports = (req, res) => {
const { name = 'World' } = req.query
res.status(200).send(`Hello ${name}!`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment