An open API service indexing awesome lists of open source software.

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 + ...

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.