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

zedo

v0.0.4

Published

zedo is a language-agnostic and deterministic package manager

Readme

Zedo

Zedo is a deterministic, Git-native package manager for composing multi-repository projects. It installs versioned modules from Git repositories and mounts only the parts your project needs.

Zedo is language-agnostic and works equally well for frontend, backend, WordPress plugins, shared libraries, and more.

Quick start

npm install -g zedo
zedo init package
zedo install

Zedo Dev Lifecycle (Multi-Repo Development Workflow)

Zedo supports a clean development workflow for working across multiple repositories without changing your project’s version contract (zedo.yaml). This lets you iterate locally and then return to deterministic, versioned installs.

Below is the recommended step-by-step lifecycle.

1. Register a local module (one-time per module)

From inside the module’s repository:

zedo dev register

What this does: Registers the absolute path of the module in Zedo’s local dev registry. This allows projects to link to the module by name later, without remembering paths.

2. Install project dependencies (baseline)

From inside your project:

zedo install

What this does: Installs all dependencies declared in zedo.yaml at their pinned versions. This establishes the deterministic baseline state of your project.

3. Link a module for local development

zedo dev link user/moduleA

What this does: Replaces the installed package with a live symlink to your local working copy. Edits in the module repository immediately reflect in the project (hot reload, no publishing required).

Zedo records this override in .zedo/dev.json and marks the project as being in dev mode.

4. (If using Docker) Mount dev links into containers

zedo docker-compose mount-links

What this does: Automatically updates docker-compose.override.yml to mount all dev-linked module paths into the container at the same absolute paths.

This ensures symlinks resolve correctly inside Docker and hot reloading works as expected.

Restart containers after running.

5. Verify dev environment

zedo doctor dev

What this does: Checks that all dev-linked paths are visible inside the current runtime environment (e.g., Docker). If something is misconfigured, Zedo prints the exact volume mounts you need to add.

6. Develop normally

At this point:

Your project uses live code from the local module. No version tags or publishing is required, your zedo.yaml remains unchanged and deterministic

Make changes in the module repo and see them immediately reflected in the project.

7. Restore project to contract state

When you’re done developing locally:

zedo dev restore

What this does: Removes all dev overrides and restores the project to the exact versions declared in zedo.yaml.

Your project is now back in a clean, deterministic state.

8. (Optional) Remove Docker dev mounts

zedo docker-compose unmount-links

What this does: Removes dev-linked volume mounts from docker-compose.override.yml. Use this if you no longer want dev paths mounted into containers.

Restart containers after running.