node-http-proxy pathRewrite with url params

node-http-proxy pathRewrite with url params

是否有使用 node-http-proxy 重写整个 url 包括参数的便捷方法?

我想做类似的事情:

module.exports = () => ({
  "customer/:customerId":"customer?id=:customerId"
});

所以我希望将 customerId 重写为名为 id 的 url 参数。

node-http-proxy 或扩展是否可行?

找到了: https://www.npmjs.com/package/express-request-proxy

这解决了问题