authenticated-mirror-server
v1.0.3
Published
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.
Downloads
6
Maintainers
Readme
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
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.
Unit test
This module uses Jest and Supertest to perform a quick async unit test on the Node server.
npm test