├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── enableMiddlewareShorthand │ └── index.js └── index.js ├── ssl ├── dev-cert.pem └── dev-key.pem └── test ├── fixtures ├── default.html ├── directoryIndexMissing │ └── file.html ├── directoryProxied │ └── index.html └── index.html └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | .DS_Store 4 | .git* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/package.json -------------------------------------------------------------------------------- /src/enableMiddlewareShorthand/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/src/enableMiddlewareShorthand/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/src/index.js -------------------------------------------------------------------------------- /ssl/dev-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/ssl/dev-cert.pem -------------------------------------------------------------------------------- /ssl/dev-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/ssl/dev-key.pem -------------------------------------------------------------------------------- /test/fixtures/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/test/fixtures/default.html -------------------------------------------------------------------------------- /test/fixtures/directoryIndexMissing/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/test/fixtures/directoryIndexMissing/file.html -------------------------------------------------------------------------------- /test/fixtures/directoryProxied/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/test/fixtures/directoryProxied/index.html -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schickling/gulp-webserver/HEAD/test/index.js --------------------------------------------------------------------------------