express-http-proxy 的基础使用

const app = express()

app.use(matchPath, proxy(serverAddress, {
  proxyReqPathResolver: function(req) {
    return remainPath + req.url
  }
}))
原文地址:https://www.cnblogs.com/fanqshun/p/10193107.html