http-proxy-middleware#fixRequestBody TypeScript Examples

The following examples show how to use http-proxy-middleware#fixRequestBody. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: proxy.ts    From the-fake-backend with ISC License 6 votes vote down vote up
/**
 * Add a httpProxy to a proxy properties.
 *
 * @param proxy The proxy properties object
 * @param basePath The server basePath
 * @return The proxy with the proxy middleware
 */
function buildProxy(proxy: ProxyProperties, basePath?: string): Proxy {
  const { appendBasePath, name, host, onProxyReq, onProxyRes } = proxy;

  return {
    host,
    name,
    handler: createProxyMiddleware({
      ...proxy,
      target: host,
      pathRewrite: (path) =>
        appendBasePath ? path : path.replace(basePath || '', ''),
      changeOrigin: true,
      onProxyReq: (proxyReq, req, res, options) => {
        proxy.onProxyReq?.(proxyReq, req, res, options);
        fixRequestBody(proxyReq, req);
      },
      onProxyRes,
    }),
  };
}