Skip to content

Latest commit

 

History

History

todomvc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

TodoMVC App

This app is based on https://todomvc.com and contains an implementation of it.

This example also demonstrate how to basically run local development environment and make production builds.

Go into this folder examples/todomvc/ and install the dependencies from the command line:

npm install

Compile templates:

npm run compile

Start Webserver:

npm run server

Open your browser and go to the URL displayed in the console: http://localhost:8080/src/

Build App:

npm run build

Run the build: http://localhost:8080/dist/

Start a file watcher (in a new console tab) to automatically compile templates when changed:

npm run dev