Closed
Description
Support plan
- is this issue currently blocking your project? (yes/no): yes
- is this issue affecting a production system? (yes/no): no
Context
- node version: 15.5.0
- module version with issue: 20.0.3
- last module version without issue: N/A
- environment (e.g. node, browser, native): node
- used with (e.g. hapi application, another framework, standalone, ...): hapi application
- any other relevant information: N/A
What are you trying to achieve or the steps to reproduce?
Trying to start a Hapi.js server on node v15.5.0
, using the following code from official docs 👇
import Hapi from '@hapi/hapi';
const server = Hapi.server({
host: 'localhost',
port: 8080
})
await server.start()
console.log(`Listening at ` + server.info.uri)
What was the result you got?
When a request is sent, the server crashes with the following message 👇
/Users/vasanth/Desktop/hapi-test/node_modules/@hapi/hapi/lib/request.js:497
if (this.response.statusCode === 500 &&
^
TypeError: Cannot read property 'statusCode' of null
at Request._finalize (/Users/vasanth/Desktop/hapi-test/node_modules/@hapi/hapi/lib/request.js:497:31)
at Request._reply (/Users/vasanth/Desktop/hapi-test/node_modules/@hapi/hapi/lib/request.js:434:18)
at Request._execute (/Users/vasanth/Desktop/hapi-test/node_modules/@hapi/hapi/lib/request.js:280:14)
at processTicksAndRejections (node:internal/process/task_queues:93:5)
What result did you expect?
The server to function normally and respond to requsets.