create-qnets
v1.0.7
Published
English · [中文](./README-zh_CN.md)
Downloads
11
Readme
create-qnets
English · 中文
Scaffolding Your First Qnets Project
Compatibility Note: Qnets requires Node.js version 18+, 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
With NPM:
$ npm create qnets@latestWith Yarn:
$ yarn create qnetsWith PNPM:
$ pnpm create qnetsWith Bun:
$ bun create qnetsThen follow the prompts!
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 Qnets + React project, run:
# npm 7+, extra double-dash is needed:
npm create qnets@latest my-react-app -- --template react-ts
# yarn
yarn create qnets my-react-app --template react-ts
# pnpm
pnpm create qnets my-react-app --template react-ts
# Bun
bun create qnets my-react-app --template react-tsCurrently supported template presets include:
koa2react-tsnext-ts
You can use . for the project name to scaffold in the current directory.
