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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@abimongo/create

v1.0.4

Published

![npm version](https://img.shields.io/npm/v/@abimongo/create.svg) ![Release workflow](https://github.com/NodEm9/abimongo/actions/workflows/release.yml/badge.svg)

Readme

Abimongo Create (scaffolder)

npm version Release workflow

The Abimongo CLI is a project scaffolding tool. It creates starter applications and wiring for common project types (for example: MERN, Next.js, REST API, and GraphQL). The CLI focuses on generating working project skeletons and developer tooling; it does not expose a runtime API surface that needs in-depth reference docs.

Key points

  • Purpose: scaffold full-stack or API starter projects and templates.
  • Scope: project generation, template wiring, and optional dependency installation.
  • Minimal docs: this package intentionally contains minimal documentation because runtime API docs live in @abimongo/core and @abimongo/logger.

Optional installs

During interactive scaffolding the CLI can offer to install @abimongo/core and @abimongo/logger into the generated project. If you accept, those packages will be added as project dependencies and basic wiring will be included in the scaffold. If you decline, the scaffold will include notes so you can add them later.

Installation

You can run the CLI without a global install using npm or yarn exec helpers. From a project root:

# npm
npx @abimongo/create <command> [options]

# yarn
yarn dlx @abimongo/create <command> [options]

# or use npm exec when installed as a devDependency
npm exec --package @abimongo/create -- @abimongo/create <command>

Quick start

  • Show help:
npx @abimongo/create --help
  • Scaffold a new project (interactive):
npx @abimongo/create init
  • Generate a template or artifact:
npx @abimongo/create generate <template-name>

Common commands

  • init — interactive project scaffolding (choose project type, features, and optional packages).
  • generate (or gen) — create templates, models, or other code artifacts.
  • config — inspect or update CLI/project template configuration.
  • help — list commands and flags.

Examples and templates

The CLI ships with example templates and usage notes. See the repository folder:

packages/cli/examples

When to use each package

  • Use @abimongo/create when you want to bootstrap a new project quickly.
  • Use @abimongo/core for runtime classes, configuration, and API-level usage (these are documented in the core package docs).

Troubleshooting

  • If a command is unavailable, run npx @abimongo/create --help to confirm the available commands and flags.
  • In monorepos, run the CLI from the workspace root so it can find shared templates and config.
  • If you accept optional installs but the package manager fails, install @abimongo/core and @abimongo/logger manually in the generated project.

Contributing

Contributions to the CLI templates are welcome. If you add or modify templates, add corresponding example scaffolds under packages/cli/examples and include a short description of the template intent.

License

This package follows the repository license. See the top-level LICENSE file for details.