{"id":14989903,"url":"https://github.com/yilmaz08/turl","last_synced_at":"2025-09-05T10:42:51.911Z","repository":{"id":249456372,"uuid":"831516708","full_name":"yilmaz08/turl","owner":"yilmaz08","description":"Command-line tool to make plain TCP-based requests.","archived":false,"fork":false,"pushed_at":"2024-07-27T15:42:23.000Z","size":28,"stargazers_count":12,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-31T08:52:25.667Z","etag":null,"topics":["cli","client","curl","networking","request","rust-lang","tcp","tcp-client","tool"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/yilmaz08.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2024-07-20T19:36:16.000Z","updated_at":"2024-09-13T19:29:15.000Z","dependencies_parsed_at":"2024-09-15T17:22:15.897Z","dependency_job_id":null,"html_url":"https://github.com/yilmaz08/turl","commit_stats":{"total_commits":14,"total_committers":2,"mean_commits":7.0,"dds":0.0714285714285714,"last_synced_commit":"421e706fa3ac7b0b704a7e4bb5a4980b8d01022b"},"previous_names":["yilmaz08/turl"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yilmaz08%2Fturl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yilmaz08%2Fturl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yilmaz08%2Fturl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yilmaz08%2Fturl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yilmaz08","download_url":"https://codeload.github.com/yilmaz08/turl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223486881,"owners_count":17153241,"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":["cli","client","curl","networking","request","rust-lang","tcp","tcp-client","tool"],"created_at":"2024-09-24T14:19:06.886Z","updated_at":"2024-11-07T09:03:38.452Z","avatar_url":"https://github.com/yilmaz08.png","language":"Rust","funding_links":[],"categories":["\u003ca name=\"networking\"\u003e\u003c/a\u003eNetworking"],"sub_categories":[],"readme":"# tURL\ntURL is a [curl](https://github.com/curl/curl) inspired command-line tool to make plain TCP-based requests.\n## Installation\nYou can clone the repository and use it.\n```\ngit clone https://github.com/yilmaz08/turl\n```\n## Usage\n```\n$ cargo run -- 127.0.0.1:80 --content \"GET / HTTP/1.1\\r\\nHost: 127.0.0.1:80\\r\\n\\r\\n\"\n```\nThis will send a HTTP request to 127.0.0.1:80 with the specified headers and content.\n\nAlternatively, you can use the recently introduced `HTTP Mode`:\n```\n$ cargo run -- 127.0.0.1:80 --content \"request body\" --http GET\n```\n\nResponse (on a nginx welcome page):\n```\nHTTP/1.1 200 OK\nServer: nginx/1.26.1\nDate: Sun, 21 Jul 2024 12:12:06 GMT\nContent-Type: text/html\nContent-Length: 615\nLast-Modified: Mon, 03 Jun 2024 20:30:53 GMT\nConnection: keep-alive\nETag: \"665e27fd-267\"\nAccept-Ranges: bytes\n\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n\u003ctitle\u003eWelcome to nginx!\u003c/title\u003e\n\u003cstyle\u003e\nhtml { color-scheme: light dark; }\nbody { width: 35em; margin: 0 auto;\nfont-family: Tahoma, Verdana, Arial, sans-serif; }\n\u003c/style\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003ch1\u003eWelcome to nginx!\u003c/h1\u003e\n\u003cp\u003eIf you see this page, the nginx web server is successfully installed and\nworking. Further configuration is required.\u003c/p\u003e\n\n\u003cp\u003eFor online documentation and support please refer to\n\u003ca href=\"http://nginx.org/\"\u003enginx.org\u003c/a\u003e.\u003cbr/\u003e\nCommercial support is available at\n\u003ca href=\"http://nginx.com/\"\u003enginx.com\u003c/a\u003e.\u003c/p\u003e\n\n\u003cp\u003e\u003cem\u003eThank you for using nginx.\u003c/em\u003e\u003c/p\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n## Contributing\ntURL is open-source, and we welcome contributions! If you'd like to make a change or fix a bug, please:\n\n- Open an issue to discuss your proposed changes (unless it is a small change or fix).\n- Fork the repository and make needed changes on the forked repository. (If you split changes into different commits, it would be better.)\n- Open a pull request to merge your changes into the main tURL repository.\n\nWe appreciate any contributions, no matter how small!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyilmaz08%2Fturl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyilmaz08%2Fturl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyilmaz08%2Fturl/lists"}