{"id":29034153,"url":"https://github.com/spikehd/fwd","last_synced_at":"2025-06-26T11:06:41.424Z","repository":{"id":298755392,"uuid":"983625572","full_name":"SpikeHD/fwd","owner":"SpikeHD","description":"Tiny CLI tool to expose localhost to LAN","archived":false,"fork":false,"pushed_at":"2025-05-14T18:23:06.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T13:15:16.673Z","etag":null,"topics":[],"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/SpikeHD.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,"zenodo":null}},"created_at":"2025-05-14T17:01:04.000Z","updated_at":"2025-05-16T17:26:02.000Z","dependencies_parsed_at":"2025-06-12T18:19:06.348Z","dependency_job_id":"573f9a7b-4184-4513-b7b6-bcb68e4b999a","html_url":"https://github.com/SpikeHD/fwd","commit_stats":null,"previous_names":["spikehd/fwd"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/SpikeHD/fwd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpikeHD%2Ffwd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpikeHD%2Ffwd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpikeHD%2Ffwd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpikeHD%2Ffwd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpikeHD","download_url":"https://codeload.github.com/SpikeHD/fwd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpikeHD%2Ffwd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262053593,"owners_count":23251220,"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":[],"created_at":"2025-06-26T11:04:13.061Z","updated_at":"2025-06-26T11:06:41.414Z","avatar_url":"https://github.com/SpikeHD.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003efwd\u003c/h1\u003e\n  \u003cp\u003eExpose localhost ports to your local network\u003c/p\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/actions/workflow/status/SpikeHD/fwd/build.yml\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/repo-size/SpikeHD/fwd\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/commit-activity/m/SpikeHD/fwd\" /\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/release-date/SpikeHD/fwd\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/stars/SpikeHD/fwd\" /\u003e\n\u003c/div\u003e\n\n# Features\n\n* Multithreaded\n* Native ARM support\n\n# Table of Contents\n* [Installation](#installation)\n* [Usage](#usage)\n* [Building](#building)\n  * [Prerequisites](#prerequisites)\n  * [Steps](#steps)\n* [TODO](#todo)\n* [Contributions](#contributions)\n\n## Installation\n\n### Windows\n\n```powershell\n# Run the install script\nInvoke-WebRequest -Uri \"https://raw.githubusercontent.com/SpikeHD/fwd/refs/heads/main/install.ps1\" -OutFile \"$env:TEMP\\install.ps1\"; PowerShell -ExecutionPolicy Bypass -File \"$env:TEMP\\install.ps1\"\n\n# You can uninstall by deleting C:\\Program Files\\fwd\ndel \"C:\\Program Files\\fwd\"\n```\n\n### Linux\n\n```shell\n# Run the install script\ncurl -fsSL https://raw.githubusercontent.com/SpikeHD/fwd/refs/heads/main/install.sh | sudo bash\n\n# You can uninstall by removing the binary from /usr/local/bin\nrm /usr/local/bin/fwd\n```\n\n### macOS\n\n```shell\n# Run the install script\ncurl -fsSL https://raw.githubusercontent.com/SpikeHD/fwd/refs/heads/main/install.sh | sudo bash\n\n# You can uninstall by removing the binary from /usr/local/bin\nrm /usr/local/bin/fwd\n```\n\n# Usage\n\n\u003e [!NOTE]\n\u003e You may need to add a firewall rule to allow incoming connections on the port you are forwarding to first!\n\n```shell\n# Get all options\nfwd -h\n\n# Forward connections to port 8080 from port 8081 (fwd will automatically expose \u003cdst + 1\u003e to the local network if nothing is specified)\nfwd 8080\n\n# Forward connections to port 8080 from port 88001 on the local network\nfwd 8080 -p 88001\n```\n\n## Building\n\n### Prerequisites\n\n* Rust\n\n### Steps\n\n1. Clone the repository\n2. Run `cargo build --release`\n3. The binary will be in `target/release/fwd`\n\n## TODO\n\n- [ ] Add support for UDP\n- [ ] Multi-mapping (map multiple ports at once)\n\n## Contributions\n\nIssues, PRs, etc. are all welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspikehd%2Ffwd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspikehd%2Ffwd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspikehd%2Ffwd/lists"}