gulp-connect-proxy-with-headers
v10.4.1
Published
A simple proxy with headers middleware for gulp-connect
Downloads
3
Readme
gulp-connect-proxy-with-headers
A simple proxy middleware for gulp-connect
support post request
pass cookie and other headers
How to use
gulp.task('connect', function () {
connect.server({
root: [conf.dist],
port: 9000,
livereload: true,
middleware: function (connect, opt) {
var Proxy = require('gulp-connect-proxy');
opt.route = '/proxy';
var proxy = new Proxy(opt);
return [proxy];
}
});
});
Notes:
opt.route
is optional, if omitted requests made to http://localhost:9000/foo.com/bar.png
will be proxied.
If opt.route
is set requests made to http://localhost:9000/proxy/foo.com/bar.png
will be proxied.
This is for development purposes only. If you need a proxy in production use Nginx or Apache.
TODO:
- Write Tests