0.9.0 • Published 7 years ago

gulp-forward v0.9.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

gulp-forward

gulp FED test middleware,script local,data remote!

Installation

Using npm:

$ npm i --save-dev gulp-forward

Config in gulpfile.js

  • First, you need use gulp with gulp-connect as you local dev server。
  • Then, Config something, that's depend on your project!

Example(In our project, we config like this below):

dev mock server:

{
  proxyOpt: 1,
  mockConfig: {
    mockDir: `${__dirname}/test/frontEnd/`,
    mockReg: /\/xhr(\/[\w.]+)+$/,
  },
}

test remote forward

the rules regexp is design to intercept the rquest and forward to local server(the gulp server), otherwise, the request will be proxy to remote server

{
  proxyOpt: 2,
  remoteUrl: 'http://miq.lancelou.com',
  remotePort: 80,
  rules: [
    {
      reg: /(\/js\/\w*)-.*(\.js)$/,
      replace: '$1$2',
    },
    {
      reg: /(\/js\/.*\.js.map)$/,
      replace: '$1',
    },
  ],
}
0.9.0

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago