An open API service indexing awesome lists of open source software.

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.

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)