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

swarm-server

v1.2.1

Published

A simple LevelDB-backed WebSocket and TCP-listening Swarm server (peer).

Downloads

23

Readme

Swarm: a basic server

A simple LevelDB-backed WebSocket and TCP-listening Swarm server (peer).

Usage

swarmd [-C|-F|-A|-R] [options] path/database-id

C, F, A, R are run modes (create, fork, access, run). The database directory name consists of the database id and peer id.


npm install -g swarm-server
    
# creates an empty "test" database replica (peer id 1) at ./test-1
swarmd -C --oClock=Logical ./test-1

# WebSocket-only Swarm server, runs REPL, which is good for debugging
swarmd -R ./test-1 --listen ws://localhost:8080

Options

  • [x] -C --create create a database (dir name == db name)
    • [x] -n --name database name (default: take from the path)
    • [ ] -i --id XY replica id (default: take from the path)
    • [x] --oXxx="Yyy" set a global database option Xxx to "Yyy"
    • [ ] --OXxx="Yyy" set a scoped database option
    • [ ] --0Xxx="Yyy" set a local database option override
  • [ ] -F --fork fork a database
    • [ ] -t --to /path/dbname-YZ a path for the new replica
    • [ ] -i --id YZ as above
  • [x] -A --access access a database
    • [ ] -s --scan /Type#id!prefix list all records under a prefix
    • [x] -e --erase /Type#id!prefix erase records
    • [x] -p --put file add ops to the database (default: read stdin)
    • [x] -v --vv print the version vector
    • [ ] -g --get /Type#id print the object's state
    • [ ] --OXxx, --0Xxx edit database options (as above)
  • [x] -U --user add/remove/list users/clients
    • [x] -a --add login add a user (take the password from stdin)
    • [x] -r --remove login
    • [x] -l --list
  • [ ] -R --run run a database (the default)
    • [ ] -l --listen scheme:url listen for client conns on URL
      • [x] - stdin (default)
      • [ ] ws://hostname:port WebSocket
      • [ ] tcp://11.22.33.44:5555 TCP
    • [ ] -c --connect scheme:url connect to a peer
    • [ ] -e --exec script.js execute a script once connected
    • [ ] -r --repl start REPL
    • [ ] -d --daemon daemonize
    • [ ] -x exit when done
    • [ ] -f --filter grep log events (e.g. -f /Swarm.on.off)

Database options

  1. Globals (relayed to every replica)
    • [x] DBIdScheme replica id scheme (e.g. --oIdScheme=0280)
    • [x] Clock clock mode (Logical, Hybrid)
    • [x] ClockLen minimum time value length (e.g. 6 for 1GDBdW)
  2. Scopeds (relayed to clients, but not peers)
  3. Locals (not relayed)
    • [ ] Listen listen url (e.g. -0Listen=wss://swarmdb.net:1234)
    • [ ] Connect peer's url (e.g. -0Connect=tcp://1.2.3.4:5678)

for a CLI client, see swarm-client.