├── .gitignore ├── .travis.yml ├── README.md ├── example ├── gulpfile.js ├── server.js └── static │ ├── index.html │ └── style.css ├── index.js ├── package.json ├── scripts └── static.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .idea 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/README.md -------------------------------------------------------------------------------- /example/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/example/gulpfile.js -------------------------------------------------------------------------------- /example/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/example/server.js -------------------------------------------------------------------------------- /example/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/example/static/index.html -------------------------------------------------------------------------------- /example/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/example/static/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/package.json -------------------------------------------------------------------------------- /scripts/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/scripts/static.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimm/gulp-live-server/HEAD/test/index.js --------------------------------------------------------------------------------