Guest User

Untitled

a guest
Mar 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. // simple API
  2. app.use('/healthcheck', require('express-healthcheck')())
  3. app.use('/echo', (req, res) => {
  4. res.send({message: `Hello ${req.query.name}`})
  5. })
Add Comment
Please, Sign In to add comment