swarm-server
v1.2.1
Published
A simple LevelDB-backed WebSocket and TCP-listening Swarm server (peer).
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-idC, 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:8080Options
- [x]
-C --createcreate a database (dir name == db name)- [x]
-n --namedatabase name (default: take from the path) - [ ]
-i --id XYreplica 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
- [x]
- [ ]
-F --forkfork a database- [ ]
-t --to /path/dbname-YZa path for the new replica - [ ]
-i --id YZas above
- [ ]
- [x]
-A --accessaccess a database- [ ]
-s --scan /Type#id!prefixlist all records under a prefix - [x]
-e --erase /Type#id!prefixerase records - [x]
-p --put fileadd ops to the database (default: read stdin) - [x]
-v --vvprint the version vector - [ ]
-g --get /Type#idprint the object's state - [ ]
--OXxx, --0Xxxedit database options (as above)
- [ ]
- [x]
-U --useradd/remove/list users/clients- [x]
-a --add loginadd a user (take the password from stdin) - [x]
-r --remove login - [x]
-l --list
- [x]
- [ ]
-R --runrun a database (the default)- [ ]
-l --listen scheme:urllisten for client conns on URL- [x]
-stdin (default) - [ ]
ws://hostname:portWebSocket - [ ]
tcp://11.22.33.44:5555TCP
- [x]
- [ ]
-c --connect scheme:urlconnect to a peer - [ ]
-e --exec script.jsexecute a script once connected - [ ]
-r --replstart REPL - [ ]
-d --daemondaemonize - [ ]
-xexit when done - [ ]
-f --filtergrep log events (e.g.-f /Swarm.on.off)
- [ ]
Database options
- Globals (relayed to every replica)
- [x]
DBIdSchemereplica id scheme (e.g.--oIdScheme=0280) - [x]
Clockclock mode (Logical,Hybrid) - [x]
ClockLenminimum time value length (e.g. 6 for1GDBdW)
- [x]
- Scopeds (relayed to clients, but not peers)
- Locals (not relayed)
- [ ]
Listenlisten url (e.g.-0Listen=wss://swarmdb.net:1234) - [ ]
Connectpeer's url (e.g.-0Connect=tcp://1.2.3.4:5678)
- [ ]
for a CLI client, see swarm-client.
