https://github.com/flavien-hugs/svelte-todo-app
Simple svelte todo app
https://github.com/flavien-hugs/svelte-todo-app
Last synced: 3 months ago
JSON representation
Simple svelte todo app
- Host: GitHub
- URL: https://github.com/flavien-hugs/svelte-todo-app
- Owner: flavien-hugs
- Created: 2022-06-17T13:35:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-17T13:42:36.000Z (over 3 years ago)
- Last Synced: 2025-03-29T03:45:01.112Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 165 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simple svelte todo app
## Get started
Install the dependencies...
```bash
git clone https://github.com/flavien-hugs/svelte-todo-app.git
cd svelte-todo-app
npm install
```...then start [Rollup](https://rollupjs.org):
```bash
npm run dev
```### With [Vercel](https://vercel.com)
Install `vercel` if you haven't already:
```bash
npm install -g vercel
```Then, from within your project folder:
```bash
cd public
vercel deploy --name my-project
```### With [surge](https://surge.sh/)
Install `surge` if you haven't already:
```bash
npm install -g surge
```Then, from within your project folder:
```bash
npm run build
surge public my-project.surge.sh
```