Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 791 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 791 Bytes

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