authenticated-mirror-server"
A local server that mirrors your protected production API endpoints. It lets you connect your local app to your remote server with protected request header.
Get started
- Clone the repo into your local environment
cd simple-proxy-server
cp .env.template .env
npm start
Inside .env
, define the credentials required for making requests to the your endpoints. The default port is 8888. After you have finished setting up the .env, run npm start
, then you will have a local proxy up and running on http://localhost:[PORT]
Next, you will have to update your app to make requests to http://localhost:[PORT]
instead in your local development environment.