Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
ws-messaging
Advanced tools
Just a really thin abstraction layer on top of WebSocket for Node.js and Web browsers with a Promises and EventEmitter based APIs.
Send notifications via an EventEmitter-like API.
Request-reply API using promises (works in both directions, without any connection blocking during processing).
Built-in auth via WebSocket messages exchange (no more query strings).
Reconnection method is provided.
Binary messages support via custom encoders/decoders.
Reasonable client size (14KB minified, including a Promise polyfill).
npm i ws-messaging
On a server:
const Server = require('ws-messaging')
const port = 8000
function connectionHook (client, authData) {
// check an authData
// then assign client events handlers
// return a promise
}
let server = new Server({port}, {connectionHook})
On a client:
const Client = require('ws-messaging/client')
const url = `ws://localhost:${port}`
const auth = { /* will be authData in connectionHook */ }
let client = new Client(url, {auth})
client.on('someEvent', () => { /* do smth */ })
client.register('someMethod', () => { /* do smth, return a promise */ })
client.on('connection', () => {
/* now this client can send messages */
client.send('myEvent', ...someData)
/* or use request-reply (RPC) API */
client.invoke('myMethod', ...someArgs)
.then(result => { /* do smth */ })
.catch(error => { /* do smth */ })
})
client.on('close', () => {
/* close, but a client is able to try to reconnect */
if (!client.terminated) {
setTimeout(client.reconnect.bind(client), 2000)
}
})
See tests in test/index.js
for more usage examples.
Server API and Client API documentation is available online.
If you encounter a bug in this package, please submit a bug report to github repo issues.
PRs are also accepted.
MIT
FAQs
A minimalistic abstraction layer for websockets.
The npm package ws-messaging receives a total of 3 weekly downloads. As such, ws-messaging popularity was classified as not popular.
We found that ws-messaging demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.