1.0.3 • Published 4 years ago

authenticated-mirror-server v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

authenticated-mirror-server

GitHub license Known Vulnerabilities

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