# Patchbay `patchbay` is a secure-scuttlebutt client interface that is fully compatible with [patchwork](https://github.com/ssbc/patchwork). ![](./screenshot.png) Patchbay is built using [patchcore](https://github.com/ssbc/patchcore) + [depject](https://github.com/dominictarr/depject). The goal is to make it easier to develop new features, and enable or disable features. This has so far been quite successful! This makes in very easy to create say, a renderer for a new message type, or switch to a different method for choosing user names. ## Setup Libsodium has some build dependencies. On *ubuntu systems the following might help: ```sh sudo apt-get install m4 libtool eclipse-cdt-autotools ``` On MacOS you may need the following packages installed (in this example, via [Homebrew](https://brew.sh/)): ```sh brew install libtool automake autoconf ``` Install Scuttlebot (your gossip server) ```sh npm install scuttlebot@latest -g # make sure you have secure-scuttlebutt@15.5.2 npm ls secure-scuttlebutt -g sbot server # then in another tab (these must be separate commands) sbot plugins.install ssb-contacts sbot plugins.install ssb-about sbot plugins.install ssb-backlinks sbot plugins.install ssb-fulltext # for faster searches (optional) # restart sbot server (go back to previous tab and kill it) ``` Restart your sbot, then (optionally) use an invite code. This will give you your first friend, from which point you can find others: ``` sbot invite.accept LONG_INVITE_CODE_MAYBE_IN_QUOTES ``` Install Patchbay (an interface for the your scuttlebutt database) ```sh git clone https://github.com/ssbc/patchbay.git cd patchbay npm install ``` ## Running the desktop app From inside the patchbay repo folder, ```sh npm install -g electron electro font-awesome npm run rebuild npm start ``` ## Running in the browser _this is incomplete_ From inside the patchbay repo folder, ``` npm install -g browserify indexhtmlify mkdir -p build && browserify main.js | indexhtmlify --title patchbay > build/index.html ``` Make sure scuttlebot is allowing private connections. Stop any running sbot server, restart it with the `--allowPrivate` option and create a new modern invite: ```sh sbot server --allowPrivate sbot invite.create --modern ``` From inside the patchbay repo folder, run `npm run lite`. Lastly open `build/index.html` in a browser and append the invite created above using: index.html#ws://localhost:8989.... ## How to add a feature To add a new message type, add add a js to `./modules/` that exports a function named `message_content` (it should return an HTML element). To add a new tab, export a function named `screen_view` (returns an html element). To add a new detail, that appears above a message, export a function named `message_meta`. See the code for more examples. ## Module graph patchbay uses [depject](http://github.com/dominictarr/depject) to manage it's modules. Here is a graph of the current connections between them (round shows module, square shows api, arrow direction points from user to provider). [module graph](./graph.svg) ## License MIT