an api request proxy based on express
npm install @readyapi/api-client-proxy



The Ready API Client Proxy redirects requests to another server to avoid CORS issues. Works well with the Ready API Client.
``bash`
npm install @readyapi/api-client-proxy
Create a new Node.js project and run the following code to run your own instance:
`ts
import { createApiClientProxy } from '@readyapi/api-client-proxy'
const { listen } = createApiClientProxy()
listen(5051, () => {
console.log(🥤 API Client Proxy listening on http://localhost:5051)``
})