Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

appcd-fswatcher

Package Overview
Dependencies
Maintainers
3
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appcd-fswatcher

A filesystem watcher that actually works.

latest
Source
npmnpm
Version
2.0.7
Version published
Maintainers
3
Created
Source

appcd-fswatcher

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.

Installation

npm i appcd-fswatcher

Usage

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

Package last updated on 26 Apr 2021

Did you know?

Socket

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.

Install

Related posts