revolver 1.3.0 copy "revolver: ^1.3.0" to clipboard
revolver: ^1.3.0 copied to clipboard

Automatically reloads the application when file changes are detected, much like Nodemon.

Automatically reloads your command line application when changes to files are detected. Monitoring occurs on files within the current path, recursively.

Check the documentation for extra functionality using the API.

Revolver was influenced by Nodemon.

Installation #

pub global activate revolver

Usage #

revolver [options...] application [application arguments...]
$ revolver --help
-e, --ext                 Watch only the specified extensions.
-w, --working-dir         Overrides the current working directory,.
                          (defaults to "/files/projects/dart/revolver")

-p, --use-polling         Using file polling, rather than file system events, to detect file changes.
-h, --help                Displays this help information.
-g, --[no-]git            Ignores git files and respects the contents of .gitignore.
                          (defaults to on)

-d, --[no-]ignore-dart    Ignore dart project files.
                          (defaults to on)

Examples #

$ revolver --ext="dart,yaml,conf" application.dart
Start.     application.dart
Modified.  application.dart
Reload.    application.dart


$ revolver --git bin/server.dart -p 8080
Start.     bin/server.dart
New File.  bin/test1
Reload.    bin/server.dart
Deleted.   bin/test1
Reload.    bin/server.dart
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Automatically reloads the application when file changes are detected, much like Nodemon.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

ansicolor, args, glob, watcher

More

Packages that depend on revolver