npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thecorporation/server

v26.3.24

Published

Pre-built binaries for the Corporation API server

Downloads

2,060

Readme

@thecorporation/server

Pre-built binaries for the governance kernel — the Rust backend that validates every corporate action, enforces policy gates, and produces atomic git commits. Wraps the server as a Node.js child process with automatic platform detection.

Part of TheCorporation — version-controlled governance, autonomous agents, and open-source corporate infrastructure.

Install

npm install @thecorporation/server

The correct binary for your platform is installed automatically via optionalDependencies.

Supported platforms: macOS (Apple Silicon, Intel), Linux (x64, arm64), Windows (x64).

Usage

import { startServer, isAvailable, getBinaryPath } from "@thecorporation/server";

// Check if a binary exists for this platform
if (isAvailable()) {
  const child = startServer({
    port: 8000,
    dataDir: "./data/repos",
  });
}

startServer(options?)

Spawns the server as a child process and returns a ChildProcess.

| Option | Env var | Default | |---|---|---| | port | PORT | 8000 | | dataDir | DATA_DIR | ./data/repos | | redisUrl | REDIS_URL | — | | jwtPrivateKeyPem | JWT_PRIVATE_KEY_PEM | — | | jwtPublicKeyPem | JWT_PUBLIC_KEY_PEM | — | | stripeSecretKey | STRIPE_SECRET_KEY | — | | stripeWebhookSecret | STRIPE_WEBHOOK_SECRET | — | | commitSigningKey | COMMIT_SIGNING_KEY | — | | stdio | — | "inherit" |

Oneshot mode (CLI)

The binary also supports a call subcommand for processing a single request without starting a server:

api-rs --skip-validation call GET /v1/health
api-rs --skip-validation call --data-dir ~/.corp/data POST /v1/workspaces/provision --stdin

The --data-dir flag sets the data directory for that request (overrides DATA_DIR env var, defaults to ./data/repos). This is used by the CLI's process:// transport for local-mode operation.

getBinaryPath()

Returns the resolved binary path, or null if unavailable. Resolution order:

  1. CORP_SERVER_BIN environment variable
  2. Platform-specific npm optional dependency
  3. Local dev build at services/api-rs/target/release/api-rs

isAvailable()

Returns true if a binary exists for the current platform.

Links

License

MIT