![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
websocket-as-promised
Advanced tools
Promise-based W3C WebSocket wrapper
npm install websocket-as-promised --save
const WebSocketAsPromised = require('websocket-as-promised');
const wsp = new WebSocketAsPromised();
wsp.open('ws://echo.websocket.org')
.then(() => wsp.send({foo: 'bar'}))
.then(response => console.log(response.id))
.then(() => wsp.close())
.catch(e => console.error(e));
As there is no built-in WebSocket client in Node.js, you should use a third-party module. The most popular W3C compatible solution is websocket:
const W3CWebSocket = require('websocket').w3cwebsocket;
const WebSocketAsPromised = require('websocket-as-promised');
const wsp = new WebSocketAsPromised({WebSocket: W3CWebSocket});
wsp.open('ws://echo.websocket.org')
.then(...)
/**
* Constructor
*
* @param {Object} [options]
* @param {String} [options.idProp="id"] id property name attached to each message
* @param {Object} [options.WebSocket=WebSocket] custom WebSocket constructor
*/
/**
* Open WebSocket connection
*
* @param {String} url
* @returns {Promise}
*/
/**
* Send data and wait for response containing `id` property
*
* @param {Object} data
* @returns {Promise}
*/
/**
* Close WebSocket connection
*
* @returns {Promise}
*/
/**
* Returns raw WebSocket instance
*
* @returns {WebSocket}
*/
MIT @ Vitaliy Potapov
FAQs
A WebSocket client library providing Promise-based API for connecting, disconnecting and messaging with server
The npm package websocket-as-promised receives a total of 1,025 weekly downloads. As such, websocket-as-promised popularity was classified as popular.
We found that websocket-as-promised demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.