This package allows you to quickly scaffold a new web components project powered by Vite.
With NPM:
npm create webcomp@latest
With PNPM:
pnpm create webcomp
Then follow the prompts. You can use .
for the project name to scaffold in the current directory.
- Standalone JavaScript
└── components
├── MyApp.js
└── MyCounter.js
- CSS + JavaScript
└── components
├── my-app
│ ├── index.js
│ └── style.css
└── my-counter
├── index.js
└── style.css
- HTML + CSS + JavaScript
└── components
├── my-app
│ ├── index.html
│ ├── index.js
│ └── style.css
└── my-counter
├── index.html
├── index.js
└── style.css