├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── index.js ├── package.json ├── server.js ├── src └── app.js └── styles.css /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/server.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-hot-reloading-example/HEAD/src/app.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------