10.4.1 • Published 8 years ago

gulp-connect-proxy-with-headers v10.4.1

Weekly downloads
-
License
ISC
Repository
github
Last release
8 years ago

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
10.4.1

8 years ago

10.3.1

8 years ago