Vite project template scaffolding for Webxdc development.
With NPM:
$ npm create @webxdc/vite-plugins@latest
With PNPM:
$ pnpm create @webxdc/vite-plugins
With Yarn:
$ yarn create @webxdc/vite-plugins
Then 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 Webxdc + TypeScript project, run:
# npm 7+, extra double-dash is needed:
npm create @webxdc/vite-plugins@latest my-app -- --template vanilla-ts
# pnpm
pnpm create @webxdc/vite-plugins my-app --template vanilla-ts
# yarn
yarn create @webxdc/vite-plugins my-app --template vanilla-ts
Currently supported template presets include:
vanilla
vanilla-ts
You can use .
for the project name to scaffold in the current directory.
This project is based on create-vite.