This package is used to bootstrap new Vite projects that use Pacy Devtools.
It was adapted from the create-vite package.
The usage is explained in https://pacy.dev/docs/usage#creating-a-new-project .
Currently supported template presets include:
vuevue-tsreactreact-tsreact-swcreact-swc-tspreactpreact-tssveltesvelte-tssolidsolid-tsqwikqwik-ts
With NPM:
npm create pacy@latestWith Yarn:
yarn create pacyWith PNPM:
pnpm create pacyWith Bun:
bun create pacyYou can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run:
# npm 7+, extra double-dash is needed:
npm create pacy@latest my-vue-app -- --template vue
# yarn
yarn create pacy my-vue-app --template vue
# pnpm
pnpm create pacy my-vue-app --template vue
# Bun
bun create pacy my-vue-app --template vue