Guest User

Untitled

a guest
Jun 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const express = require('express')
  2.  
  3. const app = express()
  4.  
  5. app.get('/wait', (req, res) => {
  6. console.log('Started wait!')
  7.  
  8. setTimeout(() => {
  9. res.send('Done!')
  10. console.log('Done!')
  11. }, 10000)
  12. })
  13.  
  14. app.listen(8000)
Add Comment
Please, Sign In to add comment