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
- Host: GitHub
- URL: https://github.com/mohamedsamara/vite-svelte
- Owner: mohamedsamara
- License: mit
- Created: 2022-07-16T04:48:44.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T04:27:19.000Z (almost 4 years ago)
- Last Synced: 2025-01-03T10:23:41.223Z (over 1 year ago)
- Topics: jwt, svelte, vite
- Language: Svelte
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```