Here are
31 public repositories
matching this topic...
An efficient wrapper around node.js fs.watch / fs.watchFile / FSEvents
-
Updated
May 13, 2020
-
JavaScript
🔮 A globbing fs.watch wrapper built from the best parts of other fine watch libs.
-
Updated
Jul 11, 2019
-
JavaScript
A nodejs script that allows you to watch a folder for changes and compile the less css files into another folder.
-
Updated
May 8, 2020
-
JavaScript
A wrapper and enhancements for fs.watch
-
Updated
May 7, 2020
-
JavaScript
WTC is a simple utility you can use to watch files and execute commands.
CLI tool to watch files locally then push them to your Minehut server automatically when they are changed
-
Updated
May 16, 2020
-
JavaScript
A Docker image for h265ize, to make it easy to convert videos to h.265
-
Updated
Jan 25, 2019
-
Dockerfile
Real-time output of your program (ONLY IN SHELL, no program, no Lib, no Package required to use it)
-
Updated
Dec 12, 2019
-
Shell
⚙️ Run tests automatically when saving them
Watch for file changes and continuously trigger commands
Notify users about watched files or folders in Github pull requests
Watch your log files during development and save your time.
-
Updated
Dec 31, 2018
-
JavaScript
PostCSS plugin to watch folder for changes
-
Updated
May 26, 2020
-
JavaScript
Watches your files and executes unit tests for them
-
Updated
May 19, 2020
-
JavaScript
Watch filesystem for changes
-
Updated
Jun 29, 2019
-
JavaScript
A file watching application restarter for your 'npm start' command.
-
Updated
Mar 13, 2017
-
JavaScript
A file watcher console application used for software testing, to detect changes software does on the environment and files.
Watch files and directories and run command when changes happen
A Go library for watching files.
Watch for file changes in a static site and automatically trigger a new build
-
Updated
May 29, 2020
-
Shell
Java project that help you to monitor a Windows directory for any new file
Node.js File System Usage
-
Updated
Apr 7, 2018
-
JavaScript
Helper scripts to create new Debian packages
-
Updated
Jan 28, 2020
-
Python
A NodeJS application to minimize JavaScript and CSS files.
-
Updated
May 24, 2017
-
JavaScript
Watch files and directories and run command when changes happen
Application to streamline saving test evidence screenshots
IF Filesystem-event Then...
-
Updated
Mar 20, 2020
-
Rust
Simple linux utility that wraps command and signals file changes.
Improve this page
Add a description, image, and links to the
watch-files
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
watch-files
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
I love
cargo-watch, and use it on everything! Right now, I am having a bit of trouble figuring out how to ignore a file properly.The following invocations successfully ignore
README.md:cargo watch -w src -s "touch README.md"cargo watch -i '.md' -s "touch README.md"cargo watch -i '*.md' -s "touch README.md"The following invocations don't ignore
README.md, which means