1.0.3 • Published 8 years ago

@meteor-it/xpress-support-ws v1.0.3

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
8 years ago

XPress WebSocket support

Read instruction in XPress to install

Usage:

server.on('WS /*',async(req, socket, next)=>{
    // Req here - custom object, have all props as on normal http requests
    req.a=123;
    next(); 
});
server.on('WS /a',async(req, socket, next)=>{
    req.a; // = 123
    socket.on('message', msg=>console.log.bind(console));
});
1.0.3

8 years ago