├── .gitignore ├── index.html ├── package.json ├── readme.md └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | haters/ 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/browser-sync-remote-example/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/browser-sync-remote-example/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/browser-sync-remote-example/HEAD/readme.md -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/browser-sync-remote-example/HEAD/style.css --------------------------------------------------------------------------------