create-v1
v1.0.0
Published
## Scaffolding Your First FE Project
Downloads
86
Readme
create-v1
Scaffolding Your First FE Project
With NPM:
npm create v1@latestWith Yarn:
yarn create v1With PNPM:
pnpm create v1With Bun:
bun create v1Then 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 Lib + TS project, run:
# npm 7+, extra double-dash is needed:
npm create v1@latest my-ts-lib -- --template lib-ts
# yarn
yarn create v1 my-ts-lib --template lib-ts
# pnpm
pnpm create v my-ts-lib --template lib-ts
# Bun
bun create v my-ts-lib --template lib-tsCurrently supported template presets include:
lib-tsh5h5-tswebweb-ts
You can use . for the project name to scaffold in the current directory.
