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

@imbrace-open-source/create-imbrace-app

v1.0.0

Published

A develop app with imbrace boilerplate

Readme

create-imbrace-app

A CLI tool to quickly scaffold a new project from a boilerplate repository.

Installation

Global Installation (Recommended)

Install the package globally via npm:

npm install -g create-imbrace-app

After installation, you can use the CLI command anywhere:

create-imbrace-app my-project

Using npx (No Installation Required)

You can run the tool directly without installing it:

npx create-imbrace-app my-project

Usage

Basic Usage

create-imbrace-app [projectName]

If you don't provide a project name, the CLI will prompt you for one.

Interactive Mode

Simply run the command without arguments:

create-imbrace-app

You'll be prompted to:

  1. Enter your project name
  2. Choose whether to install dependencies automatically

Command Options

| Option | Description | Default | |--------|-------------|---------| | [projectName] | Name of your project directory | Prompts if not provided | | --repo <url> | Custom git repository URL to clone from | https://github.com/kelvin-nguyen-1/boilerplate | | --no-install | Skip automatic dependency installation | Dependencies are installed by default | | -h, --help | Display help information | - |

Examples

Create a project with default settings

create-imbrace-app my-awesome-app

Create a project from a custom repository

create-imbrace-app my-app --repo https://github.com/username/my-boilerplate

Create a project without installing dependencies

create-imbrace-app my-app --no-install

Then install dependencies manually later:

cd my-app
npm install

What It Does

When you run the command, the tool will:

  1. Clone the repository - Downloads the boilerplate from the specified git repository (main branch)
  2. Clean up - Removes .git, dist, and build directories from the cloned project
  3. Install dependencies (optional) - Runs npm install --legacy-peer-deps if you choose to install
  4. Display next steps - Shows you commands to get started with your new project

After Creation

Once your project is created, navigate to the directory and start developing:

cd my-project
npm run dev

Requirements

  • Node.js (v14 or higher recommended)
  • Git (for cloning repositories)
  • npm or npx

Development

To work on this tool locally:

  1. Clone this repository
  2. Install dependencies: npm install
  3. Link the package locally: npm link
  4. Test the command: create-imbrace-app test-project

License

ISC