{"id":15056788,"url":"https://github.com/conetproject/tq-proxy","last_synced_at":"2025-04-10T04:35:36.683Z","repository":{"id":46173456,"uuid":"409779919","full_name":"CoNETProject/tq-proxy","owner":"CoNETProject","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-21T23:53:34.000Z","size":403,"stargazers_count":1,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T15:19:03.038Z","etag":null,"topics":["gfw","http-proxy","proxy","socks-proxy","socks5-proxy"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/CoNETProject.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2021-09-24T00:14:38.000Z","updated_at":"2024-06-21T23:53:37.000Z","dependencies_parsed_at":"2024-06-22T14:03:54.691Z","dependency_job_id":"672dd69b-a90b-44e1-a82a-c72546f7d205","html_url":"https://github.com/CoNETProject/tq-proxy","commit_stats":{"total_commits":36,"total_committers":2,"mean_commits":18.0,"dds":0.2222222222222222,"last_synced_commit":"36bdde8eee6c77a2aa619fbdda94f8ad23cc1791"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoNETProject%2Ftq-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoNETProject%2Ftq-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoNETProject%2Ftq-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoNETProject%2Ftq-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CoNETProject","download_url":"https://codeload.github.com/CoNETProject/tq-proxy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248158432,"owners_count":21057171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["gfw","http-proxy","proxy","socks-proxy","socks5-proxy"],"created_at":"2024-09-24T21:56:30.228Z","updated_at":"2025-04-10T04:35:36.650Z","avatar_url":"https://github.com/CoNETProject.png","language":"TypeScript","readme":"# TQ Proxy Server\n\n### This is the beginning of CoNET project\n### now migrate to\n## The new era of CoNET\n\n### New Link here:\nhttps://github.com/CoNET-project/CONET-Platform\n\n## Description 概要\n\n![multiple gateway](https://user-images.githubusercontent.com/19976150/140949990-22c6d9fe-5046-40dd-b8e2-edfe1f2f6cf4.gif)\n\n\nTQ Proxy is lightweight and fast Proxy server based on NodeJS. It provide HTTP, HTTPS, SOCKS v4 \u0026 v5 proxy.\nTQ Proxy splits a proxy to two parts, one is the gateway server and proxy server.\nCommunication between the two parts is using HTTP protocol to make a virtual tunnel that disguise the traffic looks like normal HTTP protocol, to exchanges packets. Support multiple gateway servers at the same time, which can increase bandwidth and reduce the risk of traffic monitoring.\n\n\nTQ Proxy是輕量高速代理服務器，它支持 HTTP/HTTPS Proxy, Socks v4和v5。\n\n它把一個Proxy服務器拆分成網關服務器和代理服務器二個部分,代理服務器獲取客戶端的網絡請求後，提交給網關服務器去訪問目標主機，然後回傳給代理服務器並返回客戶端。\n\n網關服務器和代理服務器通过明碼HTTP混淆协议，建立一个實質加密的虚拟专用通道來逃避網絡審查。\n\nTQ Proxy類似於Shadowsocks代理服務器，但TQ Proxy可同時使用多個網關服務器，以達到網絡加速和減少網關服務器被流量監控發現的風險。\n\n![iOPN4](https://user-images.githubusercontent.com/19976150/140952713-faf12d83-46a8-4bfb-8fcd-30d7beeb928d.png)\n\n\n\n## INSTALL 安裝\n1. Install NodeJS / 安裝NodeJS\n\nhttps://nodejs.org/en/\n\n\n2. install TQ Proxy / 安裝TQ代理服務器\n```bash\nnpm i @kloak-it/tq-proxy -g\n```\n\n## SETUP 設置\n\n### Gateway Server 啟動網關服務器\n\nGateway1 server 網關服務器一 192.168.0.1\n```bash\ntq-proxy -g password1 80\n```\nGateway2 server 網關服務器二 192.168.0.2\n```bash\ntq-proxy -g password2 80\n```\n\n### Proxy Server 啟動代理服務器\n\nProxy server 192.168.0.3\n```bash\ntq-proxy -p gateway.json 3127\n```\n\n### About gateway.json 關於gateway.json設定\n\nSetup two gateway server for proxy server\n```json\n[\n    { \n        \"gateWayPort\": 80, \n        \"gateWayIpAddress\":\"192.168.0.1\",\n        \"randomPassword\":\"password1\"\n    },{\n        \"gateWayPort\": 80,\n        \"gateWayIpAddress\":\"192.168.0.2\",\n        \"randomPassword\":\"password2\"\n    }\n]\n```\n\n## Customized Dedicated Private Gateway Cluster service/訂製專屬VPN代理集群服務\n\n\u003cimg width=\"1497\" alt=\"https://www.tq-proxy.com\" src=\"https://user-images.githubusercontent.com/19976150/140950996-98590619-e981-4631-933a-1bdab799ae65.png\"\u003e\n\n\n## Notice 注意事項\n\nThis version do not support UDP proxy.\n\n當前版本代理服務器不支持UDP代理\n\nこのパージョンはUDP対応しておりませんので、ご注意してください。\n\n## License 版權 \n\nCopyright (c) Kloak Information Technologies Inc. All rights reserved.\n\nLicensed under the [MIT](LICENSE) License.\n\nThe MIT License (MIT)\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconetproject%2Ftq-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconetproject%2Ftq-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconetproject%2Ftq-proxy/lists"}