Skip to content

Files

Latest commit

0beb721 · Mar 23, 2025

History

History

create-minze

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 18, 2024
Mar 23, 2025
Mar 23, 2025
Mar 23, 2025
Mar 23, 2025
Dec 18, 2024
Dec 18, 2024
Dec 23, 2021
Jul 2, 2023
Jul 6, 2023
Mar 23, 2025
Aug 19, 2023

Create Minze

Scaffolding a Minze dev environment

Minze requires Node.js version >= 16.0.0

npm

npm create minze@latest

yarn

yarn create minze

pnpm

pnpm create minze

Then follow the prompts!

Command Line Options

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite environment, run:

# npm
npm create minze@latest my-project -- --template vite

# yarn
yarn create minze my-project --template vite

# pnpm
pnpm create minze my-project -- --template vite

Currently supported template presets include:

  • vite
  • vite-ts
  • storybook
  • storybook-ts

You can use . for the project name to scaffold in the current directory.