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

@adonis-agora/sail

v0.3.0

Published

Docker-powered local dev environment for AdonisJS — service auto-detection, per-worktree isolation with deterministic ports, and agent-friendly JSON output. Part of the Agora ecosystem.

Readme

@adonis-agora/sail

Docker-powered local dev services for AdonisJS. Sail runs Postgres, MySQL, Redis, Mailpit and MinIO in Docker while the app itself stays on the host — and every git worktree gets isolated containers with deterministic, shifted host ports, automatically.

node ace add @adonis-agora/sail
node ace sail:install   # scan the app, generate compose.yml, wire env.ts + .env
node ace sail:up        # start the stack, wait for healthchecks, sync .env.local
node ace sail:info              # ports, dashboards and connection env (or --json / --env)
node ace sail:ps                # container state, health, published ports
node ace sail:psql              # psql REPL — or -- -c 'select 1' (also sail:mysql, sail:redis)
node ace sail:logs redis --tail 100
node ace sail:exec redis -- redis-cli ping
node ace sail:share             # public tunnel URL for previews and webhooks
node ace sail:down              # stop this worktree's stack
node ace sail:prune --dry-run   # stacks left behind by deleted worktrees

How it works

install detects services from package.json and config/*.ts (client: 'pg', config/redis.ts, smtp mailers, s3 disks, active store: 'lucid' selections in Agora configs — commented-out alternatives are ignored, and a dependency contradicted by its config is skipped with a note). It writes a worktree-agnostic compose.yml (host ports interpolate ${SAIL_*_PORT:-base}), appends the missing start/env.ts validations and .env / .env.example defaults through the codemods, declares the keys in .env.schema for varlock users, and documents the workflow in AGENTS.md. up / sail:sync-env write the worktree's resolved ports into .env.local (plus .env.test.local, which is what Adonis reads under NODE_ENV=test) — Adonis loads those over .env on its own, so there is nothing to eval.

Inside an AI agent every command defaults to machine-readable JSON, never opens a prompt, and stays idempotent with meaningful exit codes.

See the repository README.

License

MIT © Davi Carvalho