├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── deploy.json ├── dist ├── app.css ├── app.js ├── bottle-service.js ├── bottle.js └── index.html ├── generate-data.js ├── hydrate-app.js ├── index.html ├── package.json ├── src ├── app.js ├── data.json ├── render │ ├── render-footer.js │ ├── render-header.js │ ├── render-todo.js │ ├── render-todos.js │ └── render.js ├── todos.js └── uuid.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .grunt/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/README.md -------------------------------------------------------------------------------- /deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/deploy.json -------------------------------------------------------------------------------- /dist/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/dist/app.css -------------------------------------------------------------------------------- /dist/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/dist/app.js -------------------------------------------------------------------------------- /dist/bottle-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/dist/bottle-service.js -------------------------------------------------------------------------------- /dist/bottle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/dist/bottle.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/dist/index.html -------------------------------------------------------------------------------- /generate-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/generate-data.js -------------------------------------------------------------------------------- /hydrate-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/hydrate-app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/app.js -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/data.json -------------------------------------------------------------------------------- /src/render/render-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/render/render-footer.js -------------------------------------------------------------------------------- /src/render/render-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/render/render-header.js -------------------------------------------------------------------------------- /src/render/render-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/render/render-todo.js -------------------------------------------------------------------------------- /src/render/render-todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/render/render-todos.js -------------------------------------------------------------------------------- /src/render/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/render/render.js -------------------------------------------------------------------------------- /src/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/todos.js -------------------------------------------------------------------------------- /src/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/src/uuid.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/instant-vdom-todo/HEAD/webpack.config.js --------------------------------------------------------------------------------