Cache npm, PyPI, or Go module downloads locally. Air-gapped environments, faster installs, no dependency on public registries during CI. Your packages, your network.
Every operation in Parcel is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/packages — list all packages with optional search and filter query parametersPOST /api/packages — create a new package recordGET /api/packages/{id} — retrieve a single package by IDPUT /api/packages/{id} — update an existing packageDELETE /api/packages/{id} — remove a packageGET /api/stats — aggregated statistics with status breakdownGET /api/health — health check endpoint for monitoringA non-profit with no DevOps budget downloads the Parcel binary, sets two environment variables, and runs it on the same Linux box that handles their email. It has been running for three months without intervention. When they need to update, they download the new binary and restart the process.
The overhead of managing packages tends to grow quietly until someone asks why the team is paying four different subscriptions for overlapping features. Parcel replaces that stack with a single process that starts in under a second.
GET /api/packages — List all packages. Supports ?q=keyword for search and ?status=value for filteringPOST /api/packages — Create a new package. Send JSON with at least nameGET /api/packages/{id} — Fetch one package by IDPUT /api/packages/{id} — Update fields on an existing packageDELETE /api/packages/{id} — Remove a packageGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringThe dashboard opens at /ui and gives you a search bar, status filters, and a create form. Double-click any package to edit it inline. Behind the dashboard, every operation maps to a REST endpoint under /api/packages. Responses are JSON. Authentication is handled at the network level — put Parcel behind your VPN or reverse proxy, and it serves requests to whoever can reach it.
Self-hosted package registry proxy. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool parcel
PORT=8670 ./parcel
http://localhost:8670
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export PARCEL_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./parcel
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.