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

config-rocket

v0.6.4

Published

Easily create and deploy configurable config packs!

Readme

config-rocket TypeScript heart icon

npm version npm downloads Codecov

Overview & Features

config-rocket is a toolkit/engine that helps you create or install configurable config-packs, which can range anywhere from some configuration files, a component, or even a full library template!

CR for users:

  • Cross-platform 🪟🍏🐧
  • Easy, interactive, safe install of any config pack and zip archives, whether its a public one shared by your friend, or your own, privately-stored.
    • config-rocket does not allow any code execution, so the installation of a config pack is safe, but you should verify that the archive contains the files that you expect.

CR for creators:

  • Config type-safety: config-rocket is powered by Typescript (TS), and provides type-safety, autocompletion, typedoc documentation right in your IDE while crafting your configs.
  • Powerful creator candies:
    • parameters that works interactively with your users.
    • variables, excludes, filesBuilder helps you conditionally customize your assemble process without code execution.
    • fuel context support that help you reduces duplication work in multiple files.
    • frame template for the quick file-to-file base bones.
    • snapshot that helps simulating of an existing user project, ensuring your configs will deploy correctly. (Intended for more advanced use case like testing AI agents) (TBA)
  • Easy shipping: Bundle your config pack, or just create a zip archive, create a GitHub release, or upload it somewhere, and everyone can use it via config-rocket CLI!

CR for developers / communities:

  • Easily extendable: tailor your own rules and functionalities via exported functions and hooks support, for example: Roo Rocket

Usage

For users

npx config-rocket --repo="NamesMT/config-packs"
# Or by url: `npx config-rocket --url=https://direct.url/to-config.zip`

# Interactively configure the installation parameters (if any)
# Nothing more, enjoy :)

For creators

  • Generate a repo from config-packs-template
    • It's a template to create your own config packs for config-rocket ecosystem.
  • Start shipping!

License

License

Notes & References

Ecosystem Terms / Dictionary Explained

cookiecutter

This project is similar to cookiecutter (I didn't know of it's existence while creating config-rocket).

But I'm proud to say that in the current early stage, config-rocket can pretty much match the functionalities of cookiecutter, with some notes/feats:

  • Targets for broader adaptation and safety, no script execution from config packs.
  • Provides development toolings and type-safety.
  • For serious creators / communities, it's more flexible and easier to create your own extends of config-rocket with more rules and features, you are in FULL POWER of using the inner toolings to control/build the FULL PROCESS: CLI invoke, fetching, unpack, assemble,...