0
0

More than 1 year has passed since last update.

無限に時間がかかるサーバー

Posted at
const express = require('express')
const app = express()
const port = 9999

app.get('/', (req, res) => {
  res.header('Access-Control-Allow-Origin', '*')
  res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE')
  res.header(
    'Access-Control-Allow-Headers',
    'Content-Type, Authorization, access_token'
  )
  setTimeout(() => {
    res.send('Hello World!')
  }, 1000000000)
})

app.listen(port, () => {
  console.log(`Example app listening on port ${port}`)
})
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0