https://github.com/ir3ne/vite-js-tailwind-starter
A ready to go Vite starter 👩🏾🚀
https://github.com/ir3ne/vite-js-tailwind-starter
javascript js learning-resources plain-js vitejs
Last synced: about 1 month ago
JSON representation
A ready to go Vite starter 👩🏾🚀
- Host: GitHub
- URL: https://github.com/ir3ne/vite-js-tailwind-starter
- Owner: ir3ne
- License: mit
- Created: 2024-03-27T13:09:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-07-05T07:26:19.000Z (12 months ago)
- Last Synced: 2025-10-24T03:41:46.987Z (8 months ago)
- Topics: javascript, js, learning-resources, plain-js, vitejs
- Language: JavaScript
- Homepage: https://vite-js-starter.netlify.app/
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Vite JS Starter with Tailwindcss
This is a small JS starter which uses Vite and Tailwindcss
You can use it to quickly test new features locally and also do experiments.
The purpose of this starter it's to make super quick all the basic setup needed to use plain JS or packages to add.
### Tooling
This starter includes:
- [`pnpm`](https://pnpm.io) as the enforced package manager
- [`ESLint`](https://eslint.org) using the new Flat Config format
- [`Prettier`](https://prettier.io) for consistent code formatting
### Usage notes
This project uses [`pnpm`](https://pnpm.io) as package manager and enforces its use.
To install dependencies:
```bash
pnpm install
```
To prevent accidental usage of npm or yarn, the project includes a preinstall script using `only-allow`.
If you try to install with another package manager, the process will fail with an informative error.
#### Benefits of using Vite
A ready to use environment with the Development Experience at the first place: Vite prioritizes developer experience by providing features like instant server start, lightning-fast hot module replacement, and a minimal configuration approach. This makes it easier and more enjoyable to develop web applications.
#### Documentation
ViteJS: [ViteJS Documentation](https://vitejs.dev)
JavaScript: [JavaScript Documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
##### Start small, add whatever you want.