never is a CLI tool that builds and (re)starts your web application whenever there is a change in the source files.
go get github.com/ashrko619/never
cd /path/to/myapp
Start never:
never [args]
Never will watch for file events, and every time you create/modifiy/delete a file it will build and restart the app. Arguments passed to never
will be forwarded to your app.
never
looks for a 'never.conf.json'
file in the current working directory for additional configuration. Here is a sample format for the config file
{
"ignoredFolders" :["js","css"], // folders to ignore (recursively)
"ignoredExtensions" : [".html",".js"] // extensions to ignore
}
- Fork it
- Create your feature branch (
git checkout -b my-awesome-feature
) - Commit your changes (
git commit -am 'Add awesome feature'
) - Push to the branch (
git push origin my-awesome-feature
) - Create new Pull Request