create-qingkuai
v1.0.18
Published
The official scaffolding tool for quickly bootstrapping a Qingkuai project
Downloads
29
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(v1+)
yarn create qingkuai "your project name"
# With yarn(v2+)
yarn create qingkuai@latest "your project name"
# With yarn ^v4.11
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(v1+)
yarn create qingkuai "your project name" -ts
# With yarn(v2+)
yarn create qingkuai@latest "your project name" -ts
# With yarn ^v4.11
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(v1+)
yarn && yarn dev