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

codex-factory

v1.0.0

Published

Orchestration CLI for spinning up local development Codex cluster with Docker

Readme

Codex Factory

oclif Version Downloads/week Tests

CLI tool to spin up Docker cluster of Codex nodes for advanced testing and/or development

Table of Contents

Install

Requirements: Docker

$ npm install -g codex-factory

You can also use this CLI directly thanks to npx without installing it:

$ npx codex-factory start 0.2.0

Usage

# This spins up the cluster for specific Codex version and exits
$ codex-factory start --detach 0.2.0

# The spins up the cluster using Codex version configured in external places. See below for options where to place it.
$ codex-factory start --detach

# This attaches to the client container and displays its logs
$ codex-factory logs client --follow

# This stops the cluster and keeping the containers so next time they are spinned up the data are kept
# but data are not persisted across version's bump!
$ codex-factory stop

# You can also spin up the cluster without the --detach which then directly
# attaches to the client logs and the cluster is terminated upon SIGINT (Ctrl+C)
$ codex-factory start 0.2.0

# You can spin cluster with the last nim-codex's master build - this might not work!
$ codex-factory start latest

# You can spin cluster with the specific Git commit nim-codex's master build - this might not work!
$ codex-factory start ce2db15

For more details see the --help page of the CLI and its commands.

External Codex version configuration

You can omit the Codex version argument when running codex-factory start command if you specify it in one of the expected places:

  • CODEX_FACTORY_VERSION env. variable
  • package.json placed in current working directory (cwd) under the engines.codex property.
  • .codexfactory.json placed in current working directory (cwd) with property version.

Build versions

Docker images are built upon every push to nim-codex's master branch, so if you need to test some specific commit you can then use its short Git commit hash in order to spin Codex's factory cluster. But be aware that this might not work as Codex factory is maintained based on the released versions and hence if there were some changes in configuration parameters in the build you want to use, Codex factory might not yet support it.

Latest versions

There is special Codex Factory image tag latest that has the latest Codex's master build. It is not recommended using this tag unless you need to test some upcoming feature and know what are you doing. There is high chance that there might be some change in Codex that is not compatible with current Codex Factory and so it might not even work.

Contribute

There are some ways you can make this module better:

  • Consult our open issues and take on one of them
  • Something not working - create issue!
  • See something to tweak - create PR!
  • Join us in our Discord chat if you have questions or want to give feedback

Developing

You can run the CLI while developing using npm start -- <command> ....

Maintainers

License

BSD-3-Clause

Originally written for Swarm's Bee client: https://github.com/ethersphere/bee-factory