{"id":19077895,"url":"https://github.com/backendstack21/rproxy","last_synced_at":"2026-02-23T23:32:50.655Z","repository":{"id":104003723,"uuid":"427270630","full_name":"BackendStack21/rproxy","owner":"BackendStack21","description":"HTTP reverse proxy implementation based on Node.js and Docker","archived":false,"fork":false,"pushed_at":"2025-01-26T10:25:57.000Z","size":131,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T04:42:49.779Z","etag":null,"topics":["api-gateway","docker","fast-gateway","http","proxy","reverse-proxy"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BackendStack21.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"custom":"https://www.paypal.me/kyberneees"}},"created_at":"2021-11-12T07:29:54.000Z","updated_at":"2025-01-26T10:24:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"9ea1540d-98d0-43b5-83f8-fcd01d97a194","html_url":"https://github.com/BackendStack21/rproxy","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/BackendStack21/rproxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BackendStack21%2Frproxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BackendStack21%2Frproxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BackendStack21%2Frproxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BackendStack21%2Frproxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BackendStack21","download_url":"https://codeload.github.com/BackendStack21/rproxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BackendStack21%2Frproxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29760613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T21:02:23.375Z","status":"ssl_error","status_checked_at":"2026-02-23T20:58:31.539Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-gateway","docker","fast-gateway","http","proxy","reverse-proxy"],"created_at":"2024-11-09T02:03:54.215Z","updated_at":"2026-02-23T23:32:50.640Z","avatar_url":"https://github.com/BackendStack21.png","language":"JavaScript","readme":"# rproxy\n[![build images](https://github.com/BackendStack21/rproxy/actions/workflows/build_images.yaml/badge.svg)](https://github.com/BackendStack21/rproxy/actions/workflows/build_images.yaml)\n\n\u003cimg src=\"logo.svg\" width=\"400\"\u003e  \n\nHTTP reverse proxy implementation based on Node.js and Docker. \n\n`rproxy` is based on `fast-gateway` and is a ready to use Docker container image for implementing reverse proxies or API Gateways.\n\u003e See: https://github.com/BackendStack21/fast-gateway\n\n\n## Usage\n\n### config.js\n```js\nmodule.exports = {\n\n  middlewares: [\n    require('cors')()\n  ],\n\n  routes: [{\n    prefix: '/api',\n    target: 'https://httpbin.org'\n  }, {\n    proxyType: 'websocket',\n    prefix: '/echo',\n    target: 'ws://ws.ifelse.io'\n  }]\n\n}\n```\n\n### Running locally using Docker\n```bash\ndocker run --rm -p 8080:8080 -v $(pwd)/config.js:/rproxy/src/config.js kyberneees/rproxy:latest\n```\n\n### Dockerfile\n```Dockerfile\nFROM kyberneees/rproxy:latest\nCOPY config.js ./src\n```\n\n## Configuration\n### Environment values\n- `PORT`: Indicates the running port of the HTTP server. Defaults to: `8080`\n\n### Installing custom NPM modules\nIn order to use custom NPM modules, those have to be installed through your `Dockerfile`. For example:\n\n```Dockerfile\nFROM kyberneees/rproxy:latest\n\nRUN npm i morgan \n```\n\nModules installed by default:\n- cors: https://www.npmjs.com/package/cors\n- http-cache-middleware: https://www.npmjs.com/package/http-cache-middleware \n","funding_links":["https://www.paypal.me/kyberneees"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackendstack21%2Frproxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackendstack21%2Frproxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackendstack21%2Frproxy/lists"}