Documentation

Learn how to use npez to create and manage your projects.

Getting Started

Installation

$ npm install -g npez

Creating Your First Project

$ npez create

# Follow the interactive prompts

# Or use non-interactive mode:

$ npez create --name my-project --framework react --variant nextjs

Commands

create

Create a new project with your preferred framework and variant.

$ npez create

# Interactive mode

$ npez create --name my-project --framework react --variant nextjs

# Non-interactive mode

install-tools

Install development tools in your project.

$ npez install-tools

# Interactive mode

$ npez install-tools --tools eslint prettier

# Non-interactive mode

List Commands

list-frameworks

List all supported frameworks and their variants.

$ npez list-frameworks

list-tools

List all available development tools.

$ npez list-tools

Video Tutorials

Creating a New Project

Watch how to create a new React project with Next.js using npez.

Adding Development Tools

Learn how to add and configure development tools to your project.

Advanced Usage

Non-Interactive Mode

Run commands without interactive prompts for automation.

# Create project

$ npez create --name my-project --framework react --variant nextjs --no-interaction

# Install tools

$ npez install-tools --tools eslint prettier --no-interaction