TodoMVC - Omniscient
An implementation of TodoMVC using Omniscient.js. It is written in ES6. It uses webpack for bundling and 6to5 for ES6 transpilation.
Running the code
Have webpack-dev-server installed:
$ npm -g install webpack-dev-server
Start webpack-dev-server either with npm:
$ npm start
or manually:
$ webpack-dev-server -d --colors --progress
This will start webpack-dev-server at its default port here.
If you just want to build the code:
$ npm -g install webpack
...
$ webpack -d --colors --progress