Todo App and source for Medium article Svelte - Quick Start
The repository is appears:
- TodoMVC application created using Svelte - The magical disappearing UI framework
- Source code base for Medium article
Svelte Quick Start
about Svelte framework
The goal of the the repository and Svelte Quick Start article is to introduce Svelte syntax fast by creating Todo app step by step. Todo App uses all operations of the CRUD principle: Create, Read, Update, Delete. It makes a Todo App good candidate for Svelte framework introduction.
To give a beautiful look was used tastejs/todomvc-app-css repository of the cool TodoMVC project
Note: Make sure git, NodeJs and NPM are installed
Clone the current repository and change directory:
git clone https://github.com/serjilyashenko/svelte-todo.git
cd svelte-todo
For installation of npm dependencies execute from project folder:
npm install
or
yarn
-
npm start
oryarn start
- start application in development mode onlocalhost:8080
-
npm run build
oryarn build
- start application in production mode