Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mutexlight

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mutexlight

minimal mutex lirbary

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

wspromise

websock-lowfat-promise is a zero-dependencies low-fat-promisified ws-websocket library.

Requirements

It runs inside any webbrowser or node environment that supports promises.

It can be used with most existing websocket libraries.

Basic usage

The following sample code should speak for itself:

const WebSocket = require("ws");
const wspromise = require("websocket-lowfat-promise");

async function runme() {
  const wsp = new wsppromise(new WebSocket("wsp://foo.com/bar"));
  await wsp.open();
  await wsp.send("Hello world!  Send me a response please.");
  var response = await wsp.recv();
  console.log(response);
  await wsp.close();
  console.log("Socket has been closed");
}

runme();

Reference documentation

API

Specified parameters:

  • websocket
    Should be a websocket obtained from any of the existing websocket libraries compatible with the event-system provided by ws.

Exposed API-list:

  • new wspromise(websocket)
    Creates a reference to the promisified version of the passed websocket.
  • this.open()
    Returns a promise that resolves once the connection has been established.
  • this.send(data, options)
    Returns a promise that resolves once the data-frame has been sent.
  • this.recv()
    Returns a promise that resolves once a data-frame has been received.
  • this.ping()
    Returns a promise that resolves once a pong has been received from the far end.
  • this.close()
    Returns a promise that resolves once the connection has been closed.

References

Card-carrying member of the zerodeps movement.

Keywords

FAQs

Package last updated on 11 Apr 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc