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

simple-local-socket

v1.0.0

Published

A localhost-only socket swarm. Useful for IPC or local replication of data structures. This uses unix domain sockets (or named pipes on windows) to open bidirectional streams between processes interested in a topic. A topic is a 32 byte buffer (if you pas

Downloads

4

Readme

simple-local-swarm

A localhost-only socket swarm. Useful for IPC or local replication of data structures. This uses unix domain sockets (or named pipes on windows) to open bidirectional streams between processes interested in a topic. A topic is a 32 byte buffer (if you pass a string, it will be hashed into a 32 byte buffer).

Example

const Swarm = require('.')

const topic = process.argv[2]
const name = process.argv[3]

const swarm = Swarm()
swarm.join(topic)

swarm.on('connection', (stream, details) => {
  stream.on('data', data => console.log('incoming:: ' + data.toString()))
  stream.write(`hello i am ${name}`)
})
# in a terminal
> node example.js mytopic alice
incoming: hello i am bob


# in another terminal
> node example.js mytopic bob
incoming: hello i am alice

API

const LocalSwarm = require('simple-local-swarm')

const swarm = new LocalSwarm(opts)

Open a swarm. opts are:

  • shortcircuit: bool if multiple swarms from the same process are interested in a topic, connect them directly without going through sockets (default: true)
  • basedir: string a path to a directory where to store sockets and topic files. has to be the same between all processes that want to share swarms. default: /tmp/simple-local-swarm

swarm.join(topic)

Join a topic. topic can either be a 32 byte long buffer, or a string (which will be hashed into a 32 byte buffer).

swarm.on('connection', function (socket, details) {})

Register a connection handler. socket is a binary duplex stream. details is an object with keys:

  • client: boolean: true if the connection was initiated from this process, false if coming from another process

swarm.close(cb)

Close the server and delete the topic file. This is also registered as an exit hook in node that when the process exits the topic file is deleted.