Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukechu10/svelte-todomvc
TodoMVC implementation in Svelte
https://github.com/lukechu10/svelte-todomvc
svelte todomvc
Last synced: 24 days ago
JSON representation
TodoMVC implementation in Svelte
- Host: GitHub
- URL: https://github.com/lukechu10/svelte-todomvc
- Owner: lukechu10
- Created: 2020-10-08T04:38:19.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-27T06:10:05.000Z (about 1 month ago)
- Last Synced: 2024-10-15T15:02:51.991Z (24 days ago)
- Topics: svelte, todomvc
- Language: Svelte
- Homepage: https://lukechu10.github.io/svelte-todomvc
- Size: 456 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TodoMVC for Svelte!
An implementation of TodoMVC for Svelte.
## Build instructions
### Requirements
- NodeJS
- Yarn package manager```bash
git clone https://github.com/lukechu10/svelte-todomvc svelte-todomvc # clone the repository
cd svelte-todomvc# Production build
yarn build
npx http-server public # launch a static http server of your choice with root in public/# Dev server
yarn dev
```