Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 585 Bytes

File metadata and controls

19 lines (12 loc) · 585 Bytes

Caching Proxy

Caching Proxy is a project to build a CLI tool that starts a caching proxy server, it will forward requests to the actual server and cache the responses. If the same request is made again, it will return the cached response instead of forwarding the request to the server.

Installation

git clone https://github.com/yeetdevDave/Caching-Proxy.git
cd Caching-Proxy
npm install

How to use

node index.js --port <number> --origin <url>

Example

node index.js --port 3000 --origin http://dummyjson.com