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

@involvex/create-wizard

v4.0.3

Published

create everything with ease interactive

Downloads

452

Readme

@involvex/create-wizard

npm install -g @involvex/create-wizard

npm version Build Status GitHub release GitHub Sponsors

@involvex/create-wizard is a powerful command-line interface (CLI) tool designed to streamline and accelerate the setup of new JavaScript projects. It offers an interactive and comprehensive solution for project initialization, ensuring consistency and reducing manual setup. Our goal is to be the go-to solution for quickly building new projects.

Features

  • Interactive Project Setup: Guides you through project creation with prompts for project name, template selection, and additional dependencies.
  • Modern, Animated UI: A completely redesigned interactive experience using @clack/prompts for a more engaging and user-friendly setup.
  • Extensive Template Library: Choose from a wide variety of templates, including the new vue-wizard for a complete Vue.js setup, expo-app for React Native with Expo, and ionic-app for Ionic React development.
  • Interactive Plugin Configuration: Use create-wizard --plugin to interactively configure and install plugins like Prettier, ESLint, and TypeScript.
  • Explicit Dependency Versioning: Allows specifying exact versions for dependencies, ensuring consistent project setups.
  • TypeScript Support: Option to initialize projects with TypeScript, including tsconfig.json.
  • Linting & Formatting Integration: Choose to include ESLint and Prettier for code quality and consistent formatting.
  • Docker Support: Option to generate a basic Dockerfile and .dockerignore for containerization.
  • CI/CD Workflow Generation: Generate basic GitHub Actions or GitLab CI/CD pipelines.
  • Custom Template Creation: Use npm run template:create to easily build and manage your own project templates.
  • Git Initialization: Option to initialize a Git repository and make an initial commit, setting up version control from the start.

Installation

To use create-wizard, you need Node.js (version 22.0.0 or higher) installed on your system.

npm install -g @involvex/create-wizard

Quick Start

You can quickly create a new project using npx without global installation:

npx @involvex/create-wizard@latest

This command will execute the latest version of @involvex/create-wizard without download, guiding you through the project setup process.

Usage

To create a new project, run the following command in your terminal:

create-wizard

The CLI will then guide you through the following steps:

  1. Project Name: Enter the name for your new project.
  2. Template Selection: Choose a template from the available options. Each template will set up a complete initial project structure, including its own package.json configurations (dependencies, scripts) and files.
  3. Additional Dependency Installation: Select any additional npm packages you want to install. Note that template-specific dependencies will be installed automatically.
  4. Optional Features: Choose to include:
    • TypeScript support
    • ESLint for linting
    • Prettier for code formatting
    • Docker support (Dockerfile and .dockerignore)
    • GitHub Actions workflow
    • GitLab CI/CD pipeline
  5. Git Initialization: Confirm if you want to initialize a Git repository for your project.

Development

Prerequisites

  • Node.js (>= 22.0.0)
  • npm

Setup

  1. Clone the repository:
    git clone https://github.com/involvex/create-wizard
    cd create-wizard
  2. Install dependencies:
    npm install

Scripts

  • Build: npm run build - Compiles the CLI tool.
  • Run: npm start - Executes the compiled CLI tool.
  • Lint: npm run lint - Checks code for style and quality issues.
  • Lint Fix: npm run lint:fix - Fixes linting issues automatically.
  • Format Check: npm run format:check - Checks code formatting.
  • Format: npm run format - Formats code automatically.
  • Check: npm run check - Runs linting and formatting checks.
  • Create Template: npm run template:create - Interactively creates a new project template.
  • Release: npm run release - Automates versioning, tagging, and pushing.

Contributing

Contributions are welcome! Please refer to the LICENSE file for details.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Support