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

networking_typingofdict

v2.0.0

Published

Lightweight TCP messaging library with auto-reconnect, JSON protocol, broadcast & event-driven API — pure Node.js net module, no HTTP needed

Readme

networking_typingofdict

Lightweight TCP messaging library with auto-reconnect, JSON protocol, broadcast & event-driven API. Pure Node.js net module — no HTTP, no browser, no heavy dependencies.

Features

  • Event-driven APITCPServer and TCPClient extend EventEmitter
  • JSON messaging protocol — automatic encode/decode with newline-delimited JSON
  • Auto-reconnect — client reconnects automatically on disconnect
  • Broadcast — send to all connected clients at once
  • Client management — track connected clients by ID, disconnect individually
  • Zero dependencies — only uses Node.js built-in modules

Install

npm install networking_typingofdict

Quick Start

Server

const { TCPServer } = require('networking_typingofdict');

const server = new TCPServer({ port: 8080 });

server.on('connection', ({ id }) => {
  console.log(`Client ${id} connected`);
});

server.on('message', ({ id, data }) => {
  console.log(`From client ${id}:`, data);
  server.send(id, { reply: 'ok' });
});

server.on('disconnect', ({ id }) => {
  console.log(`Client ${id} disconnected`);
});

server.start().then(() => console.log('Server listening on :8080'));

Client

const { TCPClient } = require('networking_typingofdict');

const client = new TCPClient({
  port: 8080,
  host: '127.0.0.1',
  reconnect: true,           // auto-reconnect on disconnect
  reconnectInterval: 3000    // retry every 3 seconds
});

client.on('connect', () => {
  console.log('Connected to server');
  client.send({ type: 'hello', name: 'Alice' });
});

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

client.on('disconnect', () => {
  console.log('Disconnected');
});

client.connect().catch(console.error);

API

TCPServer

| Method | Description | |--------|-------------| | new TCPServer({ port, host }) | Create server (default: port 8080, host 0.0.0.0) | | server.start() | Start listening. Returns Promise. | | server.stop() | Stop server & disconnect all. Returns Promise. | | server.send(clientId, data) | Send JSON message to specific client | | server.broadcast(data) | Send JSON message to all clients | | server.disconnect(clientId) | Force-disconnect a client | | server.getClientIds() | Get array of connected client IDs |

Events: connection, message, disconnect, error

TCPClient

| Method | Description | |--------|-------------| | new TCPClient({ port, host, reconnect, reconnectInterval }) | Create client | | client.connect() | Connect to server. Returns Promise. | | client.disconnect() | Disconnect. Returns Promise. | | client.send(data) | Send JSON message to server |

Events: connect, message, disconnect, error

Utility Functions

| Function | Description | |----------|-------------| | encodeMessage(obj) | Encode object to newline-delimited JSON string | | decodeMessages(buffer, leftover) | Decode buffer into { messages, leftover } |

License

MIT