This is the source code for the Orbiter network. The UI code is in a separate repository. Use the present repository as a dependency in your UI code for Orbiter-based apps, or else as a command-line tool for managing Orbiter Lens on a server.
We recommend using pnpm
to install Orbiter in your projects.
$ pnpm install @riffcc/orbiter
Orbiter must be initialised with an instance of Constellation, which is used for distributed data storage and networking. Constellation itself is based on OrbitDB, Helia and Libp2p.
import { créerConstellation } from "@constl/ipa";
import { createOrbiter } from "@riffcc/orbiter";
const constellation = créerConstellation();
const orbiter = createOrbiter({ constellation });
// Do orbiter stuff...
Untill complete documentation is ready, refer to the orbiter.ts code to see available functions.
This package also comes with a command-line client, useful for setting up Orbiter lenses on servers (e.g., DigitalOcean).
To use the command-line client, first install Orbiter as a global pnpm package.
$ pnpm install -g @riffcc/orbiter
Use orb config
to set up a lens and generate the required config. The dir
option specifies the path to the root folder for the Orbiter lens in which all data and keys related to the lens will be stored. Default directory is ./orbiter
.
$ orb config --dir "path/to/lens"
Use orb expor-config
to export the generated config to use in UI development. The format
option can be "vite"
or "json"
.
$ orb export-config --dir "path/to/lens" --format "vite"
Use orb lens
to run the configured lens.
$ orb run --dir "path/to/lens"