Skip to main content
This release is 19 versions behind 1.4.7 — the latest version of @fedify/fedify. Jump to latest

Built and signed on GitHub Actions

An ActivityPub/fediverse server framework

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
94%
Published
3 months ago (1.3.3)
import process from "node:process"; export function addEventListener(event: "unload", listener: () => void): void { if (event !== "unload") { throw new TypeError(`Unsupported event type: ${event}.`); } process.on("exit", listener); }