create-qingkuai
v1.0.27
Published
The official scaffolding tool for quickly bootstrapping a Qingkuai project
Downloads
548
Readme
create-qingkuai
The official scaffolding tool for quickly bootstrapping a Qingkuai project
Documentation | VSCode Extension | Issues
Installation
No need to install globally. Use npm, yarn, or pnpm:
# With npm
npm create qingkuai -- "your project name"
# With pnpm
pnpm create qingkuai@latest "your project name"
# With yarn
yarn dlx create-qingkuai@latest "your project name"If you want to use it in combination with typescript:
# With npm
npm create qingkuai -- "your project name" -ts
# With pnpm
pnpm create qingkuai@latest "your project name" -ts
# With yarn
yarn dlx create-qingkuai@latest "your project name" -tsStart developing
# With npm
npm install && npm run dev
# With pnpm
pnpm install && pnpm run dev
# With yarn
yarn && yarn dev