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 🙏

© 2026 – Pkg Stats / Ryan Hefner

net-web

v0.3.0

Published

Virtual TCP sockets for the browser - a net module shim for the web

Readme

net-web

npm version CI license

Virtual TCP sockets for the browser. A shim for Node's net module that uses in-memory EventEmitters instead of real network connections.

Why?

Browsers can't open TCP sockets. This module provides a virtual socket layer that allows code written for Node's net module to work in the browser. When paired with http-web and hsync, you can run an HTTP server entirely in a browser tab.

Installation

npm install net-web

Usage

Creating a Server

const net = require('net-web');

const server = net.createServer((socket) => {
  console.log('Client connected');

  socket.on('data', (data) => {
    console.log('Received:', data);
    socket.write('Echo: ' + data);
  });

  socket.on('close', () => {
    console.log('Client disconnected');
  });
});

server.listen(3000);

Creating a Client

const net = require('net-web');

const socket = net.Socket();

socket.on('data', (data) => {
  console.log('Server says:', data);
});

socket.connect(3000, 'localhost', () => {
  socket.write('Hello server!');
});

Closing a Server

server.close(() => {
  console.log('Server closed');
});

API

net.createServer(connectionListener)

Creates a virtual server. The connectionListener is called for each incoming connection with a socket object.

Returns a server object with:

  • listen(port) - Start listening on a virtual port
  • close([callback]) - Stop listening and clean up

net.Socket()

Creates a virtual client socket.

Returns a socket object with:

  • connect(port, [host], [callback]) - Connect to a server
  • write(data) - Send data to the connected server
  • end() - Close the connection
  • on(event, callback) - Listen for events ('data', 'close')

net.events

The shared EventEmitter used for routing connections. Exposed for advanced use cases.

net.servers

Map of active servers by port. Exposed for debugging.

How It Works

Instead of real TCP connections, net-web uses a shared EventEmitter to route data between sockets:

  1. server.listen(port) registers a listener for socket_connect_{port} events
  2. socket.connect(port) emits a socket_connect_{port} event
  3. The server creates a paired socket and calls the connection handler
  4. socket.write() emits data events on the paired socket
  5. socket.end() emits close events

All communication is synchronous and in-memory. The "port" is just an identifier for matching clients to servers.

Global State

The module maintains global state via globalThis.nodeNetWeb so that multiple modules importing net-web share the same event bus. This allows http-web to communicate with hsync through the same virtual ports.

License

ISC