{"id":20523983,"url":"https://github.com/ericlewis966/express-proxy-server","last_synced_at":"2026-05-03T12:39:35.825Z","repository":{"id":41255678,"uuid":"508887561","full_name":"ericlewis966/express-proxy-server","owner":"ericlewis966","description":"simple https proxy using expressjs","archived":false,"fork":false,"pushed_at":"2023-02-27T21:58:58.000Z","size":12,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-26T18:58:27.778Z","etag":null,"topics":["express","https","https-proxy","javascript","nodejs","proxy","security"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericlewis966.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-06-30T00:49:37.000Z","updated_at":"2023-09-26T09:14:18.000Z","dependencies_parsed_at":"2022-09-10T07:40:41.262Z","dependency_job_id":null,"html_url":"https://github.com/ericlewis966/express-proxy-server","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.5,"last_synced_commit":"ff6359af3ee002988f66e8d6fe3de834b562b07c"},"previous_names":["ericlewis966/express-proxy-server","cyber-storm-200712/express-proxy-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ericlewis966/express-proxy-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericlewis966%2Fexpress-proxy-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericlewis966%2Fexpress-proxy-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericlewis966%2Fexpress-proxy-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericlewis966%2Fexpress-proxy-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericlewis966","download_url":"https://codeload.github.com/ericlewis966/express-proxy-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericlewis966%2Fexpress-proxy-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32569714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: 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":["express","https","https-proxy","javascript","nodejs","proxy","security"],"created_at":"2024-11-15T22:46:41.982Z","updated_at":"2026-05-03T12:39:35.806Z","avatar_url":"https://github.com/ericlewis966.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## simple-express-proxy🗜📡\n\n#### This is simple express proxy web server using https protocol.\nFollowing is simple guide and usage example for quick start.\n\n1. Install package in your application\n`\nnpm install simple-express-proxy\n`\n2. Write code in your entry point code section\n\n```javascript\nconst createProxy = require(\"simple-express-proxy\");\nconst fs = require(\"fs\");\n\n// https server security configuration\nconst  privateKey  =  fs.readFileSync('./secure/key.pem', 'utf-8');\nconst  certificate  =  fs.readFileSync('./secure/cert.pem', 'utf-8');\n\n// proxy setup configuration\nconst passphrase = 'your custom password'; //security key\nconst target = 'https://google.com'; //target address to serve\nconst whitelist = ['0.0.0.0', '95.180.41.194']; // ip list to allow access to proxy service\n\n// create proxy server\nconst proxy = createProxy(privateKey, certificate, passphrase, target, whitelist);\n\n// host proxy\nproxy.listen((port, host) =\u003e {\n\tconsole.log(`https proxy server is running on port ${port} and host ${host}`)\n})\n\n```\n\n3. Host your application . 💻\n\n#### Contact to cyberstorm2007@gmail.com, enemymaycry2007@gmail.com to get more supports and utility packages","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericlewis966%2Fexpress-proxy-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericlewis966%2Fexpress-proxy-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericlewis966%2Fexpress-proxy-server/lists"}