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

ember.nvp

v0.2.0

Published

ember project generator, alternative to the official blueprints, but more modern -- hopefully one day to upstream back in to ember-cli / official blueprints

Readme

ember.nvp

ember project generator: a reenvisioning of blueprints -- hopefully one day to upstream back in to ember-cli / official blueprints, if all the caveats can be cleaned up

[!NOTE] Why isn't this work happening in the default blueprints? for a long time now, I've felt the old blueprint system from the very early days of ember-cli has not allowed for expressive enough layering of what people actually want out of a project generator. That said, that means there are some compromises in the CLI/generator in this repo. Throughout all files generated, whenever there is a caveat, there will be a comment in the file with the caveat, explaining status, open issues, and how we can collectively move forward. It's possible that one day ember-cli adopts or is inspired by this project, but it's too early to tell at the moment.

I can't recommend using this tool unless your comfortable with the emitted caveats in the project. (And being comfortable debugging build issues is recommended)

But I'm very excited about this tool, because it's everything I've ever wanted from a project generator. Each layer is idempotent, and knows about the other layers. So if, for example, you omit eslint when setting up your project, but do have github-actions, when you do add eslint, your github-actions will be updated as well. And this works in any order.

Usage

npx ember.nvp

or, faster:

pnpm dlx ember.nvp

Using the unreleased version:

pnpm dlx NullVoxPopuli/ember.nvp
# or, slower:
npx NullVoxPopuli/ember.nvp

Wrapping

The provided CLI is only a wrapper around our exported generateProject function.

Other tools can call generateProject themselves if they wish to provide a different terminal or graphical UI.

import { generateProject, Project } from 'ember.nvp';


await generateProject(new Project(
    directoryToGenerateIn
    // desires
    {
        name,
        path,
        type,
        layers,
        packageManager,
    }
));

All parts of the generator are idempotent, so running generators on existing projects can no-op.

Reqs

  • node 24+

What this does?

  • Always "type": "module"
  • Modern, incremental
  • Interactive CLI
    • choose your features
  • The generators fro the different types of projects are never out of date from each other
    • each feature/layer is a mini codemod that has to support working within all the other layers -- so eslint for example is always derived the same way -- no way for "app" and "library" configs to get out of sync

Good for:

  • demos
  • reproductions
  • existing monorepos
  • example integrations with other tools

Layers

Each layer is a standalone module that can add features to your ember project, and every layer is aware of the other layers, so if, for example, you run github actions first, and then later decide to add linting, the github actions output will be updated.

🎯 Minimal (always included)

The base layer, matching the --minimal flag from ember-cli/ember-app-blueprint#49:

  • "type": "module" in package.json
  • ✅ No @embroider/compat (faster builds)
  • ✅ No testing framework (minimal setup)
  • ✅ No linting or formatting
  • ✅ No ember-welcome-page
  • ✅ Vite-based with modern Ember

Perfect for demos, reproductions, and learning!

Git

Runs git init for you.

By default this layer is enabled, unless you are running the generator in a git repo already -- then you have to opt in to git.

GitHub Actions (optional)

Adds simple GitHub Actions workflow to your project

📝 ESLint (optional)

Adds modern ESLint configuration with:

  • TypeScript support
  • Ember plugin
  • Flat config (ESLint 9+)
  • Prettier compatibility

🎨 Prettier (optional)

Code formatting with:

  • GTS/GJS template support
  • Sensible defaults
  • Format scripts

🧪 QUnit (optional)

  • Both co-located tests as well as traditionally located tests with QUnit.
  • New Theme: qunit-theme-ember
  • Default utilities to help you find why tests are stuck

⚡ Vitest (optional)

Super experimental vitest setup using ember-vitest

Architecture

How Layers Work

  1. Discovery: CLI scans src/layers/ and imports each index.js
  2. Selection: User selects which optional layers to include
  3. Execution: Each layer's run() function is called in sequence:
    await layer.run(project);
  4. Layer Functions: Inside run(), layers use ember-apply to apply codemods in order to:
    • Copy files from files/ directory
    • Add dependencies/devDependencies to package.json
    • Add npm scripts
    • Modify package.json metadata
    • etc

Adding New Layers

To add a new layer, create a new directory in src/layers/ with:

  1. index.js - Layer definition:
import { packageJson, files } from "ember-apply";
import { join } from "node:path";

export default {
  label: "My Feature",
  description: "What this feature does",

  async run(project) {
    // Copy files from files/ directory
    await files.applyFolder(join(import.meta.dirname, "files"), project.directory);

    await packageJson.addDependencies({ "some-package": "^1.0.0" }, project.directory);

    await packageJson.addScripts({ "my-script": 'echo "Hello"' }, project.directory);
  },
};
  1. files/ directory - Template files to copy:
    • Files will be copied to the target directory maintaining structure

The CLI will automatically discover and offer it as an option!