create-pacy
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:
vue
vue-ts
react
react-ts
react-swc
react-swc-ts
preact
preact-ts
svelte
svelte-ts
solid
solid-ts
qwik
qwik-ts
Scaffolding your project
With NPM:
npm create pacy@latest
With Yarn:
yarn create pacy
With PNPM:
pnpm create pacy
With Bun:
bun create pacy
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 Vite + Vue project, run:
npm create pacy@latest my-vue-app -- --template vue
yarn create pacy my-vue-app --template vue
pnpm create pacy my-vue-app --template vue
bun create pacy my-vue-app --template vue