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

@inspire11/create

v0.0.28

Published

A CLI for quickly creating new Inspire11 projects

Readme

@inspire11/create

Version Downloads Build License

📦 @inspire11/create

Run one simple command with interactive project generator to install bootstrapped packages designed to let you hit the ground running.

  1. 🛠 Creating Projects
  2. 🧾 Features
  3. 🔩 Setting Up Your Editor
  4. 🙌🏼 Contributing
  5. ℹ️ FAQs
  6. 📯 Thanks

🛠 Creating Projects

You'll need Node v10 or later.

npm init @inspire11

The interactive CLI will help you create and configure your project automatically.

Since this repo includes the CLI and it's tests, you'll only need to fork or clone this project if you want to contribute. If you find this project useful, please consider leaving feedback so others can find it. Thanks!

🧾 Features

So we can have nice things:

🔩 Setting Up Your Editor

Before you start, consider using an editor with good typescript support.

VS Code (below) is a popular option. Editors with typescript support can provide helpful autocomplete, inline documentation, and code refactoring features.

Also consider installing editor extensions for ESLint. These extensions automatically format your code each time you save, and may quickly become invaluable.

🙌🏼 Contributing

To work on the CLI, clone and build the repo, then use npx to test it globally.

git clone [email protected]:inspire11/create.git
cd create
npm i
npm run build
npm run prod

The following tasks make development faster and more interactive:

| Command | Description | |---------|---------------------------------------------------------------------------------------------:| | build | Clean and rebuild the project | | dev | Run the pre-processed script directly via ts-node | | prod | Run the compiled script via node | | test | Lint and unit test the project |

To start working, run the dev task using npm.

npm run dev

The dev task will run the script directly via ts-node; the test task will run the test suite in watch mode with Jest. Each time you save, any changes will be rebuilt and retested.

Since only changed files are rebuilt and retested, this workflow remains fast even for large projects.

ℹ️ FAQs

Why are there two builds? (main and module)

The src of @inspire11/create is compiled into two separate builds: main and module. The main build is configured to use the CommonJS module system. The module build uses the new es6 module system.

Because Node.js LTS releases do not yet support the es6 module system, some projects which depend on your project will follow the main field in package.json. Tools which support the new system (like Rollup, Webpack, or Parcel) will follow the module field, giving them the ability to statically analyze your project. These tools can tree-shake your module build to import only the code they need.

Why put tests next to the source code?

By convention, sample tests in this project are adjacent to the files they test.

  • Such tests are easy to find.
  • You see at a glance if a part of your project lacks tests.
  • Nearby tests can reveal how a part works in context.
  • When you move the source (inevitable), you remember to move the test.
  • When you rename the source file (inevitable), you remember to rename the test file.

📯 Thanks

Using @inspire11/create for your project? Please send a pull request to add it to the list!