create-vite-lib-starter
v1.0.6
Published
[](https://npmjs.org/package/create-vite-lib-starter) [](https://npmjs.org/package/cre
Readme
create-vite-lib-starter
Quickly generate a Vite library project template with basic configuration and development environment.
Usage
Run in the terminal:
npm create vite-lib-starter@latest <project-name>Example:
npm create vite-lib-starter@latest my-vite-libThis will create a new directory named my-vite-lib in the current folder with the initialized project structure.
Quick Start
Navigate to the project directory:
cd my-vite-libStart the development server:
npm run dev # or yarn devBuild for production:
npm run build # or yarn buildRun tests:
npm test # or yarn test
Notes
- The project name must comply with npm package name conventions (lowercase letters, numbers, hyphens).
