npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yume-chan/fallback-websocket

v1.0.4

Published

Get native WebSocket in browsers, or `ws` in Node.js

Downloads

13

Readme

Fallback WebSocket

Node.js CI

Get native WebSocket in browsers, or ws in Node.js.

Help you writing WebSocket libraries targeting both browsers and Node.js.

Difference between isomorphic-ws

isomorphic-ws relies on bundlers (like Webpack) to choose between native implementation and ws package. It's not useful when not using a bundler.

This package detects whether there is a native WebSocket implementation, and fallback to ws if not.

Install

npm install @yume-chan/fallback-websocket

ws is a peer dependency, you need to install it separately for Node.js.

npm install ws

API

export default WebSocket: typeof WebSocket;

export connect(url: string): Promise<WebSocket>;

Note on TypeScript typing

The exported object always has native WebSocket's type, to use fields added by ws, import WebSocket from ws and cast the object to that.

Note on event handler properties

The onXXX event handler properties in ws are implemented strangely. Setting these properties multiple times will add multiple handlers, instead of overwriting the previous value as browsers do. Use addEventListener/removeEventListener when possible.

Usage

import WebSocket from "@yume-chan/fallback-websocket";

// do something useful with WebSocket

Or use the connect() utility function, which returns a Promise that resolves to a connected WebSocket object.

import { connect } from "@yume-chan/fallback-websocket";

try {
  const connection = await connect("ws://localhost:80");
} catch (e) {
  // handle connection exception.
}

Force to use ws

In some cases (e.g. running tests in Electron), you might want to use ws even if there is a native implementation.

You can set the FORCE_WS environment variable to achieve this.

Development

This project uses pnpm (GitHub) to manage dependency packages.

Install dependencies

pnpm i

You may also use npm, but the lockfile may become out of sync.

Testing

npm test

Coverage

npm run coverage

License

MIT