https://github.com/techlab23/todo-svelte3
Todo app built using svelte3
https://github.com/techlab23/todo-svelte3
bootstrap4 svelte svelte-v3 svelte3 sveltejs todoapp
Last synced: about 1 month ago
JSON representation
Todo app built using svelte3
- Host: GitHub
- URL: https://github.com/techlab23/todo-svelte3
- Owner: techlab23
- Created: 2019-07-17T12:38:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-17T12:38:55.000Z (almost 7 years ago)
- Last Synced: 2025-03-23T20:44:01.513Z (about 1 year ago)
- Topics: bootstrap4, svelte, svelte-v3, svelte3, sveltejs, todoapp
- Language: HTML
- Homepage: http://todo-svelte.surge.sh/
- Size: 38.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo svelte 3 app

The sample Todo app is built using svelte 3.x framework
Demo: [todo svelte](http://todo-svelte.surge.sh)
Scaffolded using [degit](https://github.com/Rich-Harris/degit) tool with base template configured to use Rollup as bundler.
App Template: https://github.com/sveltejs/template
```bash
// Scaffold a svelte-app using degit
npx degit sveltejs/template svelte-app
// Change directory
cd svelte-app
// Install dependencies
npm install
// Run the project
npm run dev
```
### Deploying the app 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
```
If you are developing shareable components using svelte then use the official component template
[sveltejs/component-template](https://github.com/sveltejs/component-template)