https://github.com/codehakase/rld
rld is a tiny tool that runs a go program and watch changes on it.
https://github.com/codehakase/rld
Last synced: 9 months ago
JSON representation
rld is a tiny tool that runs a go program and watch changes on it.
- Host: GitHub
- URL: https://github.com/codehakase/rld
- Owner: codehakase
- Created: 2021-04-29T10:36:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-29T06:58:55.000Z (over 4 years ago)
- Last Synced: 2025-03-28T11:39:30.818Z (10 months ago)
- Language: Go
- Size: 934 KB
- Stars: 10
- Watchers: 0
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RLD
rld is a tiny tool that runs a go program and watch changes on it.
rld was inspired by [Nodemon](https://github.com/remy/nodemon)
## Installation
Clone the git repository and build:
```console
$ git clone https://github.com/codehakase/rld
$ cd rld
$ make release
```
Or install go binary:
```console
$ cd rld
$ go install github.com/codehakase/rld
```
## Usage
Run `rld` followed by the file:
```console
$ rld cmd/main.go
```
## Author
- [@codehakase](https://twitter.com/codehakase)