Flotilla is a quick and easy SSB service that provides common plugins without any of the usual configuration hassles.
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.
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
AGPL-3.0