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

https://github.com/mohamedsamara/vite-svelte

Vite Svelte
https://github.com/mohamedsamara/vite-svelte

jwt svelte vite

Last synced: 3 months ago
JSON representation

Vite Svelte

Awesome Lists containing this project

README

          

# Vite Svelte

## Description

This project is an example template of using Vite with Svelte. The project purpose is to experiment/implement the following features:

1. Build Reusable components with Svelte
2. Implement Routing with [Svelte Routing](https://github.com/EmilTholin/svelte-routing) including Protected Routes
3. Use third party Svelte Library - [Toast component](https://github.com/zerodevx/svelte-toast)
4. Experiment Svelte syntax, statements, logic, stores, bindings, animation

## Quick start

1. Clone this repo using `git clone https://github.com/mohamedsamara/vite-svelte.git`
2. Move to the directory: `cd `.

3. Run `yarn install` in order to install dependencies.

## Start development

```
$ yarn dev
```

## Simple build for production

```
$ yarn build
```

## Preview production build

```
$ yarn preview
```

## Format with Prettier

```
$ yarn format
```