Giter Site home page Giter Site logo

proxi3's Introduction

proxi3

A command-line tool to start a proxy for your server, redirecting all traffic from localhost:3000/**/* to your-server.com/**/* for development purposes. Before request the server, request headers can be overrided by proxi3.config.json, after the server is requested, the response headers: Origin and Access-Control-Allow-Origin are restaured to original values, this trick prevent browser to fire the Allow-Control-Allow-Origin same origin policy error.

Install

npm install -g proxi3

Config

A proxi3.config.json can be created in root project and proxi3 will read de config and starts with this configuration.

  • headers: Overrides the original request headers, to pass to server request.
  • hooks: Overrides the original request, with custom response and status code.

proxi3.config.json example:

{
  "headers": {
    "host": false,
    "origin": "https://MY-ORIGIN/",
    "user-agent": "MY-USER-AGENT"
  },
  "hooks": [
    {
      "method": "post",
      "path": "/\\D{2}/user.*",
      "response": {
        "status": 500,
        "data": ""
      }
    }
  ]
}

Usage

proxi3 [options] <proxy_api>

Usage example:

proxi3 http://example.com/ --config ~/proxi3.config.json

Options:

  -V, --version                  output the version number
  -p, --port [port]              specify proxi3 port (default: 3000)
  -P, --http_proxy [http_proxy]  specify proxy
  -H, --host [host]              specify proxi3 host (default: 0.0.0.0)
  -c, --config <config>          specify proxi3.config.json path
  -h, --help                     output usage information

proxi3's People

Contributors

joaoneto avatar

Stargazers

Roman avatar  avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.