Installation
If you just want a quick try, you can start with the online playground.
For the full development experience, creating a local project is recommended. With create-qingkuai, you can initialize a project quickly by running one of the following commands in your terminal:
- npm
- pnpm
- yarn
shell
➜ npm create qingkuai -- "your project name"
shell
➜ pnpm create qingkuai@latest "your project name"
shell
➜ yarn dlx create-qingkuai@latest "your project name"
If you want to create a TypeScript version, just add the -ts option:
- npm
- pnpm
- yarn
shell
➜ npm create qingkuai -- "your project name" -ts
shell
➜ pnpm create qingkuai@latest "your project name" -ts
shell
➜ yarn dlx create-qingkuai@latest "your project name" -ts
After the project is created, enter the project directory, install dependencies, and start the local development server:
- npm
- pnpm
- yarn
shell
➜ npm install && npm run dev
shell
➜ pnpm install && pnpm run dev
shell
➜ yarn && yarn dev