Open
Description
Accessing the HTTP server throws a DeprecationWarning for OutgoingMessage.prototype._headers on Node version 12.3.1.
const puppeteer = require('puppeteer')
const httpServer = require('http-server')
const server = httpServer.createServer({ root: 'dist/html/' })
server.listen(8080)
const browser = await puppeteer.launch({
headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox']
})
const page = await browser.newPage()
await page.goto('http://localhost:8080', { waitUntil: 'networkidle0' })
What did you expect to happen?
No deprecation warning.
What actually happened?
Got the following warning:
(node:59243) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
If the issue is a feature request, what is the motivation / use case for it?
Tell us about your environment
- http-server version: 0.11.1
- Platform: Mac (Node 10.14.5 12.3.1)