1.0.5 • Published 3 years ago
ssb-conn-db v1.0.5
ssb-conn-db
Module that manages a local registry of connectable peers. For use with the SSB CONN family of modules.
Visual metaphor: a shelf of binders used for archival, holding static data on peers and their previous addresses used for connections.

Usage
This module is only used to create an SSB CONN plugin, not used directly by applications. A ConnDB instance should be available on the CONN plugin, with the following API:
API
new ConnDB(opts): constructor for a connDB instance, with the following options:opts.path(default'~/.ssb'): path to the directory where the database will be storedopts.writeTimeout(default2000milliseconds): interval to wait when batching database writes in the filesystem
connDB.set(address, data): insert or update a connectable peer by itsaddress(string, must conform to the multiserver address convention) withdata(object). If updating the data, it will merge the previous properties with the new properties. Returns theconnDBinstance.connDB.update(address, data): update a connectable peer by itsaddress(string, must conform to the multiserver address convention) withdata(object). If the peer is not in the database, this method performs no operations and silently returns. Returns theconnDBinstance.connDB.update(address, updater): update a connectable peer by itsaddress(string, must conform to the multiserver address convention) withupdater(a function where input is the previous data object and output should be the new data object). If the peer is not in the database, this method performs no operations and silently returns. Returns theconnDBinstance.connDB.replace(address, data): insert or update a connectable peer by itsaddress(string, must conform to the multiserver address convention) withdata(object). If updating the data, it will replace the previous properties with the new properties. Returns theconnDBinstance.connDB.get(address): returns the data for an existing peer with the givenaddress, orundefinedif the address was not registeredconnDB.getAddressForId(id): returns the connection address for an existing peer with the given SSB feedid, orundefinedif the address does not existconnDB.has(address): returnstrueif the givenaddressis registered in the database,falseotherwiseconnDB.delete(address): remove an address and its associated data from the database. Returnstrueif the address existed and was deleted,falseotherwise.connDB.entries(): returns a newIteratorobject that gives[address, data]pairsconnDB.listen(): returns a pull stream that notifies of changes made to the database, as an object{type, address}wheretypeis either'insert','update', or'delete'connDB.loaded(): returns a Promise that resolves successfully when the initial database loading (read) occurs, and rejects if there was a failure to load.connDB.close(): finishes writing any pending updates to the database, then gets ready for destroying this instance.
Notice that the API above mostly mirrors the API of the JavaScript Map.
License
MIT
1.0.5
3 years ago
1.0.4
4 years ago
1.0.2
5 years ago
1.0.3
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago
0.3.3
5 years ago
0.3.2
6 years ago
0.3.1
6 years ago
0.3.0
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago
0.1.0
7 years ago
0.0.8
7 years ago
0.0.7
7 years ago
0.0.6
7 years ago
0.0.5
7 years ago
0.0.4
7 years ago
0.0.3
7 years ago
0.0.2
7 years ago
0.0.1
7 years ago