Skip to Content
Get StartedInstallation

Installation

Learn how to install and set up ShadPanel in your development environment.

Prerequisites

Before installing ShadPanel, ensure you have the following:

  • Node.js 18.0.0 or higher
  • npm, pnpm, yarn, or bun package manager
  • Git (optional, for version control)

Installation Methods

Install ShadPanel globally to use it anywhere:

npm install -g shadpanel

Verify the installation:

shadpanel --version

Step 2: Direct Usage

Use ShadPanel without installing it globally:

shadpanel init my-app

Method 2: Using create-shadpanel-next

You can also use the create package directly:

npx create-shadpanel-next my-app

This is an alternative entry point that provides the same functionality.

Package Manager Support

ShadPanel supports all major Node.js package managers:

npm (Default)

npm install -g shadpanel shadpanel init my-app

pnpm

pnpm add -g shadpanel shadpanel init my-app --use-pnpm

Yarn

yarn global add shadpanel shadpanel init my-app --use-yarn

Bun

bun add -g shadpanel shadpanel init my-app --use-bun

Verify Installation

After installation, verify that ShadPanel is working:

# Check version shadpanel --version # Get help shadpanel --help # List all commands shadpanel init --help

Updating ShadPanel

Global Installation

Update to the latest version:

npm update -g shadpanel

Or with other package managers:

# pnpm pnpm update -g shadpanel # yarn yarn global upgrade shadpanel # bun bun update -g shadpanel

Check for Updates

Check if a newer version is available:

npm outdated -g shadpanel

Uninstalling

If you need to remove ShadPanel:

# npm npm uninstall -g shadpanel # pnpm pnpm remove -g shadpanel # yarn yarn global remove shadpanel # bun bun remove -g shadpanel

Next Steps

Now that ShadPanel is installed, you’re ready to create your first project:

Last updated on