Skip to content

Instantly share code, notes, and snippets.

@wickathou
Created July 19, 2019 01:37
Show Gist options
  • Save wickathou/c2e6050fca58458bc05a6e2af5c0e717 to your computer and use it in GitHub Desktop.
Save wickathou/c2e6050fca58458bc05a6e2af5c0e717 to your computer and use it in GitHub Desktop.
freeCodeCamp Node.js challenge #8
app.get('/now',(req,res,next)=> {
req.time = new Date().toString();
next();
}, (req,res)=> {
res.json({'time':req.time});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment