{"id":48554594,"url":"https://github.com/n3integration/reload","last_synced_at":"2026-04-08T10:02:12.471Z","repository":{"id":57511296,"uuid":"136742209","full_name":"n3integration/reload","owner":"n3integration","description":"Live reload utility for Go web servers","archived":false,"fork":false,"pushed_at":"2018-06-22T01:46:35.000Z","size":204,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-20T10:15:33.372Z","etag":null,"topics":["golang","livereload","tooling"],"latest_commit_sha":null,"homepage":"","language":"Go","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/n3integration.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}},"created_at":"2018-06-09T16:58:11.000Z","updated_at":"2024-06-20T10:15:33.373Z","dependencies_parsed_at":"2022-08-29T05:20:15.221Z","dependency_job_id":null,"html_url":"https://github.com/n3integration/reload","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/n3integration/reload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3integration%2Freload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3integration%2Freload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3integration%2Freload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3integration%2Freload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n3integration","download_url":"https://codeload.github.com/n3integration/reload/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3integration%2Freload/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31549900,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"online","status_checked_at":"2026-04-08T02:00:06.127Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["golang","livereload","tooling"],"created_at":"2026-04-08T10:02:10.709Z","updated_at":"2026-04-08T10:02:12.465Z","avatar_url":"https://github.com/n3integration.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Reload [ ![Codeship Status for n3integration/reload](https://app.codeship.com/projects/89707150-4e72-0136-7326-322e9f850b54/status?branch=master)](https://app.codeship.com/projects/293485)\n[![codecov](https://codecov.io/gh/n3integration/reload/branch/master/graph/badge.svg)](https://codecov.io/gh/n3integration/reload)\n========\n\n`reload` is a fork of the [gin](https://github.com/codegangsta/gin) project\noriginally written by [Jeremy Saenz](https://github.com/codegangsta).\n\n`reload` is a command line utility for live-reloading Go web applications.\nJust run `reload` in your app directory and your web app will be served with\n`reload` as a proxy. `reload` will automatically recompile your code when it\ndetects a change. Your app will be restarted the next time it receives an\nHTTP request (unless the `--immediate` flag is passed).\n\n`reload` adheres to the \"silence is golden\" principle, so it will only complain\nif there was a compiler error or if you successfully compile after an error.\n\n## Installation\n\nAssuming you have a working Go environment and `GOPATH/bin` is in your\n`PATH`, `reload` is a breeze to install:\n\n```shell\ngo get -u github.com/n3integration/reload\n```\n\nThen, verify that `reload` was installed correctly:\n\n```shell\nreload -h\n```\n## Basic usage\n```shell\nreload [options] run main.go\n```\nOptions\n```\n   --laddr value, -l value       listening address for the proxy server\n   --port value, -p value        port for the proxy server (default: 3000)\n   --appPort value, -a value     port for the Go web server (default: 3001)\n   --bin value, -b value         name of generated binary file (default: \"gin-bin\")\n   --path value, -t value        Path to watch files from (default: \".\")\n   --build value, -d value       Path to build files from (defaults to same value as --path)\n   --excludeDir value, -x value  Relative directories to exclude\n   --immediate, -i               run the server immediately after it's built\n   --all                         reloads whenever any file changes, as opposed to reloading only on .go file change\n   --buildArgs value             Additional go build arguments\n   --certFile value              TLS Certificate\n   --keyFile value               TLS Certificate Key\n   --logPrefix value             Setup custom log prefix\n   --notifications               enable desktop notifications\n   --help, -h                    show help\n   --version, -v                 print the version\n```\n\n## Supporting Reload in Your Web App\n`reload` assumes that your web app binds itself to the `PORT` environment\nvariable so it can properly proxy requests to your app.\n\n## Using flags?\nWhen you normally start your server with [flags](https://godoc.org/flag)\nif you want to override any of them when running `reload` we suggest you\ninstead use [github.com/namsral/flag](https://github.com/namsral/flag)\nas explained in [this post](http://stackoverflow.com/questions/24873883/organizing-environment-variables-golang/28160665#28160665)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3integration%2Freload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn3integration%2Freload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3integration%2Freload/lists"}