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

eiows

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eiows

custom fork of uWebSockets 0.14

  • 7.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.1K
increased by43.81%
Maintainers
1
Weekly downloads
 
Created
Source

eiows is a replacement module for ws which allows, but doesn't guarantee, significant performance and memory-usage improvements. This module is specifically only compatible with Node.js. This package is mainly meant for projects which depend on the performance of the “original uws package”. This package requires engine.io(3.4.2 or higher) and it should work on Node 16, 17, 18, 19, 20, 21. Git should be installed on the system to build and compile the module. This module only runs on Linux/FreeBSD/MacOS.

Installation:

npm install eiows

or

yarn add eiows

Examples:

// ESM
import * as http from 'http';
import { Server } from "socket.io";
import { eiows } from 'eiows';

let server = http.createServer();

let io = new Server(server, {
    wsEngine: eiows.Server,
    perMessageDeflate: {
        threshold: 32768
    }
});

io.on("connection", () => {
    console.log('Yes, you did it!');
});
server.listen(8080);

// CJS
var http = require('http');
var server = http.createServer();

var io = require("socket.io")(server, {
    wsEngine: require("eiows").Server,
    perMessageDeflate: {
        threshold: 32768
    }
});

io.on("connection", function(socket) {
    console.log('Yes, you did it!');
});
server.listen(8080);

Have fun!

Keywords

FAQs

Package last updated on 29 Mar 2024

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