6.0.1 • Published 4 years ago

@fraction/flotilla v6.0.1

Weekly downloads
36
License
AGPL-3.0
Repository
github
Last release
4 years ago

Flotilla

Flotilla is a quick and easy SSB service that provides common plugins without any of the usual configuration hassles.

Example

After installing, launch Oasis from the command line by running:

const flotilla = require("@fraction/flotilla");

const ssb = flotilla();

ssb.whoami((err, res) => {
  if (err) throw err;
  console.log(res.id);
  ssb.close();
});

You can pass an object to flotilla() to override SSB-Config.

Installation

First, you'll need Node.js and npm on your computer. Run node --version to see if you have it. If not, or if it's older than the current or active LTS version, you should download Node.js first.

Then, install Flotilla:

npm install @fraction/flotilla

Resources

See Also

License

AGPL-3.0