Package Exports
- hapi-socket.io
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hapi-socket.io) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Hapi-socket.io 
Implementacion de socket.io para hapijs .
Requirements
- Hapi js v17 +
Installation
$ npm install hapi-socket.io --save
Usage
const hapiSocketIo = require('hapi-socket.io')
async () => {
await server.register({
plugin: hapiSocketIo,
options: {
//Adicionar las opciones necesarias, el plugin tiene las opciones por defecto de socket.io las cuales puede ver en https://socket.io/docs/server-api/#new-server-httpserver-options
}
})
...
}
Using hapi-socket.io
server.route({
method: "GET",
path: "/user/getUser",
config: {
auth: false,
handler: handlers.getUser,
description: 'Retorna las citas',
notes: 'Devuelve las citas de un afiliado ',
plugins: {
'hapi-swagger': {
payloadType: 'form'
},
'hapi-socket.io': {
event: 'getUser',
emit: handlers.emitUser
}
},
tags: ['api'],
validate: {
query: {
idUser: Joi.string().required()
},
headers: Joi.object({
'authorization': Joi.string().required()
}).unknown()
}
}
})
}
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.