https://github.com/jacoblincool/sveltekit-plus
SvelteKit + TailwindCSS + DaisyUI + I18n + ...
https://github.com/jacoblincool/sveltekit-plus
Last synced: about 1 year ago
JSON representation
SvelteKit + TailwindCSS + DaisyUI + I18n + ...
- Host: GitHub
- URL: https://github.com/jacoblincool/sveltekit-plus
- Owner: JacobLinCool
- Created: 2023-02-27T20:22:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-26T15:46:26.000Z (about 1 year ago)
- Last Synced: 2025-04-26T16:36:59.381Z (about 1 year ago)
- Language: TypeScript
- Size: 245 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SvelteKit+
A template of SvelteKit + TailwindCSS + DaisyUI + I18n + ...
> This template supports [tmpl](https://github.com/JacobLinCool/tmpl).
```sh
tmpl import sveltekit-plus https://github.com/JacobLinCool/SvelteKit-Plus
tmpl use sveltekit-plus
```
## Batteries included
- [x] [SvelteKit](https://kit.svelte.dev/)
- [x] [TailwindCSS](https://tailwindcss.com/)
- [x] [DaisyUI](https://daisyui.com/)
- [x] [svelte-i18n](https://github.com/kaisermann/svelte-i18n)
- [x] [ESLint](https://eslint.org/)
- [x] [Prettier](https://prettier.io/)
- [x] [Vitest](https://vitest.dev)
- [x] [Playwright Test](https://playwright.dev/)
> Do you want to add more? Issue or PR are welcome!
### Dev Tools
- [x] Devcontainer
- [x] Change Log (Changesets)
- [x] Git Hooks (Husky)
- [x] VSCode Extensions (Tailwind, I18n, ...)
- [x] GitHub Actions Integration (Test, Release, ...)
---
> Adapted from create-svelte
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.