You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

hook.io-async-fs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hook.io-async-fs

Asynchronous file system utility library for Hook.io and nodeJS

0.0.2
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

hook.io-async-fs

Basic Hook.io Hook based on async-fs by Gabriel Lesperance

Installation

 git clone git@github.com:chromecide/hook.io-async-fs.git
 cd hook.io-async-fs
 npm install
 node bin/async_fs
 

Using NPM

npm install hook.io-async-fs

Hook Event Names

Event Listeners

[name]::async_fs::watch_file {name, path} - Watches file path using the hook name name

[name]::async_fs::unwatch_file {path} - Stops watching the file specified by path

[name]::async_fs::watch_tree {name, path} - Traverses the directory defined by path and recursively creates an async_fs FileHook object for each file

Events Emitted:

async_fs::file::watching {path, curr, prev} -

async_fs::file::stopped_watching {path, curr, prev} -

async-fs::file::watch_error {path, message} - emitted when an error occurs while attempting to start a file hook

async_fs::file::access {path, curr, prev} -

async_fs::file::destroy {path, curr, prev} -

async_fs::file::delete {path, curr, prev} -

async_fs::file::add {path, curr, prev} -

async_fs::file::change {path, curr, prev} -

Hook config.json settings

{
	"hookio_async_fs":{
		"watch":[
			"/path/or/file/to/watch"
		]
	}
}

TODO: Add unwatch_tree functionality

TODO: Add handling for file read errors when building a file hook

TODO: Add pattern filtering for watchTree

Keywords

hook.io

FAQs

Package last updated on 09 Jul 2012

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