# ZQDGR ZQDGR is Zoe's Quick and Dirty Golang Runner. This is a simple tool that lets you run a go project in a similar way to how you would use npm. ZQDGR lets you watch files and rebuild your project as you make changes. ZQDGR also includes an optional websocket server that will notify listeners that a rebuild has occurred, this is very useful for live reloading when doing web development with Go. **Status: Alpha** This project is not recommend for production use, you are allowed to, and I try my best to keep it as stable as possible, but features and APIs will change in nearly every release without backwards compatibility, upgrade carefilly, and make sure to depend on a specific version of ZQDGR. ## Install ```bash go install github.com/juls0730/zqdgr@latest ``` ## Usage Full usage ```Bash zqdgr [options] ``` ### Commands - `init` generates a zqdgr.config.json file in the current directory - `new [project name] [github repo]` Creates a new golang project with zqdgr and can optionally run scripts from a github repo - `watch