fedify
: the CLI toolchain for Fedify and debugging ActivityPubThe fedify
is a CLI toolchain for Fedify and debugging ActivityPub-enabled
federated server apps. Although it is primarily designed for developers who use
Fedify, it can be used with any ActivityPub-enabled server.
If you have npm installed, you can install fedify
by running the following
command:
npm install -g @fedify/cli
If you have Bun installed, you can install fedify
by running the following
command:
bun install -g @fedify/cli
If you have Deno installed, you can install fedify
by running the following
command:
# Linux/macOS deno install \ -A \ --unstable-fs --unstable-kv --unstable-temporal \ -n fedify \ jsr:@fedify/cli
# Windows deno install ` -A ` --unstable-fs --unstable-kv --unstable-temporal ` -n fedify ` jsr:@fedify/cli
You can download the pre-built executables from the releases page. Download
the appropriate executable for your platform and put it in your PATH
.
Add Package
deno add jsr:@fedify/cli
Import symbol
import * as cli from "@fedify/cli";
---- OR ----
Import directly with a jsr specifier
import * as cli from "jsr:@fedify/cli";