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

create-make

v0.7.2

Published

An advanced CLI tool for creating projects from GitHub repositories or custom templates with lightning-fast setup.

Readme

create-make

npm license An advanced CLI tool for creating projects from GitHub repositories or custom templates with lightning-fast setup.

✨ Features

  • ⚡ Blazing Fast: Clone templates directly from GitHub or local configs

  • 🎯 Interactive TUI: Beautiful terminal interface for guided project setup

  • 🔧 Custom Templates: Extend with your own templates via config file

  • 🚀 Quick Mode: Skip prompts with direct CLI arguments

  • 📁 Multi-Platform: Works on Windows, macOS, and Linux

  • 🏗️ Template Variables: Automatic project name replacement in templates

📦 Installation

Quick Use (No Installation Required)

yarn

yarn create make

npx

npx create-make

Global Installation

yarn

yarn global add create-make

npm

npm install -g create-make

🚀 Quick Start

Interactive Mode (Guided Setup)

Simply run:

yarn create make

You'll be guided through:

  1. Project name (if not provided)

  2. Category selection (Built-in types or custom)

  3. Template selection from the chosen category

Quick Mode (Skip Prompts)

Create a project with a built-in template:

yarn create make my-project --template vite-vanilla-ts

Create a project with a custom template:

yarn create make my-project --other-template my-custom-template

📖 CLI Reference

Syntax

yarn create make <projectName> [options]

Arguments

| Argument | Required | Description | |:--------:|:----:|:---------------:| | projectName | Optional* | Name of your new project |

  • Note: When using --template or --other-template, projectName is mandatory

Options

| Option | Alias | Description | Value Required | |:--------:|:---:|:---------------------:|:----:| | --template | -t | Use a built-in template (skips prompts) | Yes | | --other-template | -o | Use a custom template from config (skips to custom selection) | Yes | | --version | -v | Show version number | No | | --help | -h | Show help information | No |

Examples

  1. Full Interactive Mode
# You'll be prompted for everything
yarn create make
  1. Project Name Only
# You'll choose category and template interactively
yarn create my-awesome-project
  1. Quick Creation with Built-in Template
# Skips all prompts, creates immediately
yarn create my-app --template vite-node-ts
  1. Quick Creation with Custom Template
# Skips to custom template selection
yarn create make my-project --other-template my-own-custom-template
  1. Show Help
yarn create make --help

🎯 Available Templates

Built-in Templates (TypeScript Category)

| Template | Description | Tech Stack | |:--------:|:-----------------:|:----:| | vite-vanilla-ts | Vanilla TypeScript with Vite | Vite + TypeScript | | vite-phaser-ts | Game development with Phaser | Vite + Phaser + TypeScript | | vite-node-ts | Node.js backend with Vite | Vite + Node.js + TypeScript | | rollup-node-ts | Node.js with Rollup | Rollup + Node.js + TypeScript | | vite-monorepo-ts | Monorepo setup with Vite | Vite + Monorepo + TypeScript | | rollup-monorepo-ts | Monorepo setup with Rollup | Rollup + Monorepo + TypeScript |

Pro Tip: Create an alias for even faster usage! Add this to your shell config:

alias cm="yarn create make"

Then use:

cm my-project -t vite-node-ts

⚙️ Configuration

Custom Templates

Add your own templates via configuration file. Custom templates appear in the "Others" category during interactive selection.

Linux:

 /home/[USER]/.local/share/create-make/config.json

MacOS:

 /Users/[USER]/Library/Preferences/create-make/config.json

Windows:

 C:\Users\[USER]\AppData\Roaming\create-make\config.json

Config File Format

Create a config.json file to add your custom templates:

{
  "$schema": "./schema.json",
  "categories": {
    "Backend": {
      "express-api": {
        "name": "Node Express",
        "repo": "https://github.com/username/express-template.git",
        "args": [
          {
            "str": "PROJECT_NAME",
            "value": "projectName"
          }                                     ]
      }
    },
    "Frontend": {
      "react-ts": {
        "name": "React TypeScript",
        "repo": "https://github.com/username/react-typescript-template.git",
        "args": [
          {
            "str": "APP_NAME",
            "value": "projectName"
          }
        ]
      }
    }
  }
}

Configuration Schema

| Property | Type | Description | |:--------:|:-----------------:|:----:| | name | string | Name of the Template | | repo | string | Git repository URL to clone | | args | array | String replacements in template files | | args[].str | string | Text in template files to replace | | args[].value | string | Value to replace with (currently only "projectName" supported) |

🎮 How It Works

graph TD
    A[Start] --> B{Project name provided?}
    B -->|No| C[Prompt for project name]
    B -->|Yes| D[Use provided name]
    C --> D
    D --> E{Template option provided?}
    E -->|--template| F[Use built-in template directly]
    E -->|--other-template| G[Use custom template directly]
    E -->|No| H[Show category selection]
    H --> I{Select category}
    I --> J[Built-in Templates]
    I --> K[Others/Custom]
    J --> L[Show built-in templates]
    K --> M[Show custom categories]
    L --> N[Select template]
    M --> N
    N --> O[Create project]
    F --> O
    G --> O

🐛 Troubleshooting

Common Issues

Q: "Template not found" error

A: Ensure the template name is spelled correctly. Built-in templates are listed above. For custom templates, check your config.json.

Q: "Project name is required" error when using --template

A: When using --template or --other-template, you must provide the project name as the first argument.

Q: Custom templates not appearing

A: Verify your config.json file is in the correct location and contains valid JSON syntax.

Q: Tool won't run

A: Ensure you have Node.js 18+ installed. Check with node --version.

🤝 Contributing

Adding New Built-in Templates

  1. Fork the repository

  2. Add your template to the templates directory

  3. Update the template list in the code

  4. Submit a pull request

Reporting Issues

Found a bug or have a feature request? Please open an issue on GitHub.