Software Alternatives & Reviews

Creating and deploying a tiny proxy server on Vercel in 10 minutes

Vercel node-http-proxy
  1. 1
    Vercel is the platform for frontend developers, providing the speed and reliability innovators need to create at the moment of inspiration.
    // In Vercel, any file inside the "api" directory is exposed on an "/api" endpoint. // For an API route to work, you need to export a function as default (a.k.a request handler), // which then receives the following parameters: // - req: The request object. // - res: The response object. // See https://vercel.com/docs/serverless-functions/supported-languages#node.js for details. Export default async function handler(req, res) { res.status(200).send(`Hello world!`); }.

    #Developer Tools #Web Development Tools #App Deployment 525 social mentions

  2. A full-featured http proxy for node.js. Contribute to http-party/node-http-proxy development by creating an account on GitHub.
    Pricing:
    • Open Source
    Check the documentation of the http-proxy-middleware library (and of the node-http-proxy library, used under-the-hood) to learn how you can manipulate the proxied request & response.

    #Web Servers #Web And Application Servers #Load Balancer / Reverse Proxy 10 social mentions

Discuss: Creating and deploying a tiny proxy server on Vercel in 10 minutes

Log in or Post with