Skip to main content
Home

@fedify/cli@1.10.0
Built and signed on GitHub Actions

The CLI toolchain powered by Fedify.

This package works with Deno
This package works with Deno
JSR Score
100%
Published
2 days ago (1.10.0)

fedify: the CLI toolchain for Fedify and debugging ActivityPub

JSR npm GitHub Releases

The 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.

Installation

Using npm

If you have npm installed, you can install fedify by running the following command:

npm install -g @fedify/cli

Using Bun

If you have Bun installed, you can install fedify by running the following command:

bun install -g @fedify/cli

Using Deno

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

Downloading the executable

You can download the pre-built executables from the releases page. Download the appropriate executable for your platform and put it in your PATH.

Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

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";