Skip to content

techlab23/todo-svelte3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Todo svelte 3 app

Project Image

The sample Todo app is built using svelte 3.x framework

Demo: todo svelte

Scaffolded using degit tool with base template configured to use Rollup as bundler.

App Template: https://github.com/sveltejs/template

// 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

Install surge if you haven't already:

npm install -g surge

Then, from within your project folder:

npm run build
surge public

If you are developing shareable components using svelte then use the official component template sveltejs/component-template