
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
appcd-fswatcher
Advanced tools
A filesystem watcher that actually works.
Visit https://github.com/appcelerator/appc-daemon for more information.
Report issues to GitHub issues. Official issue tracker in JIRA.
npm i appcd-fswatcher
import FSWatcher from 'appcd-fswatcher';
const watcher = new FSWatcher('/path/to/watch', {
recursive: true,
depth: 2
});
watcher.on('change', evt => {
console.log(evt);
});
watcher.on('error', err => {
console.error(err);
});
To stop watching, you can call close():
watcher.close();
Extra functions:
import {
renderTree,
status
} from 'appcd-fswatcher';
// display an ascii tree of the filesystem tree that's being watched
console.log(renderTree());
// display filesystem watcher stats (as well as the tree)
console.log(status());
This project is open source under the Apache Public License v2 and is developed by
Axway, Inc and the community. Please read the LICENSE file included
in this distribution for more information.
FAQs
A filesystem watcher that actually works.
The npm package appcd-fswatcher receives a total of 11 weekly downloads. As such, appcd-fswatcher popularity was classified as not popular.
We found that appcd-fswatcher demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.