Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Last active November 27, 2017 22:03
Show Gist options
  • Save midnightcodr/ca737d1cfa7616db1d902bc5fca7d7ab to your computer and use it in GitHub Desktop.
Save midnightcodr/ca737d1cfa7616db1d902bc5fca7d7ab to your computer and use it in GitHub Desktop.
hapijs 17 server.method async issue
const Hapi = require('hapi')
const double = (input) => {
return new Promise(resolve => {
setTimeout(() => {
return resolve(input+input)
}, 500)
})
}
const initServer = async() => {
const server = new Hapi.Server({
port: 4001
})
server.method('double', double, {
cache: {
generateTimeout: 100,
expiresIn: 60*1000
}
})
server.route({
path: '/double/{input}',
method: 'GET',
async handler(request, h) {
return await request.server.methods.double(request.params.input)
}
})
await server.start()
console.log(`server started at ${server.info.uri}`)
}
initServer()
/*
first request for http://localhost:4001/double/test -- INSERT --
{"statusCode":503,"error":"Service Unavailable","message":"Service Unavailable"}
sequential calls (with the same parameter) return
testtest
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment