6.11.0 • Published 3 years ago

watchr v6.11.0

Weekly downloads
77,652
License
MIT
Repository
github
Last release
3 years ago

Watchr provides a normalised API the file watching APIs of different node versions, nested/recursive file and directory watching, and accurate detailed events for file/directory creations, updates, and deletions.

Usage

Complete API Documentation.

There are two concepts in watchr, they are:

  • Watcher - this wraps the native file system watching, makes it reliable, and supports deep watching
  • Stalker - this wraps the watcher, such that for any given path, there can be many stalkers, but only one watcher

The simplest usage is:

// Import the watching library
var watchr = require('watchr')

// Define our watching parameters
var path = process.cwd()
function listener(changeType, fullPath, currentStat, previousStat) {
    switch (changeType) {
        case 'update':
            console.log(
                'the file',
                fullPath,
                'was updated',
                currentStat,
                previousStat
            )
            break
        case 'create':
            console.log('the file', fullPath, 'was created', currentStat)
            break
        case 'delete':
            console.log('the file', fullPath, 'was deleted', previousStat)
            break
    }
}
function next(err) {
    if (err) return console.log('watch failed on', path, 'with error', err)
    console.log('watch successful on', path)
}

// Watch the path with the change listener and completion callback
var stalker = watchr.open(path, listener, next)

// Close the stalker of the watcher
stalker.close()

More advanced usage is:

// Create the stalker for the path
var stalker = watchr.create(path)

// Listen to the events for the stalker/watcher
stalker.on('change', listener)
stalker.on('log', console.log)
stalker.once('close', function (reason) {
    console.log('closed', path, 'because', reason)
    stalker.removeAllListeners() // as it is closed, no need for our change or log listeners any more
})

// Set the default configuration for the stalker/watcher
stalker.setConfig({
    stat: null,
    interval: 5007,
    persistent: true,
    catchupDelay: 2000,
    preferredMethods: ['watch', 'watchFile'],
    followLinks: true,
    ignorePaths: false,
    ignoreHiddenFiles: false,
    ignoreCommonPatterns: true,
    ignoreCustomPatterns: null,
})

// Start watching
stalker.watch(next)

// Stop watching
stalker.close()

npm

This project provides its type information via inline JSDoc Comments. To make use of this in TypeScript, set your maxNodeModuleJsDepth compiler option to 5 or thereabouts. You can accomlish this via your tsconfig.json file like so:

{
  "compilerOptions": {
    "maxNodeModuleJsDepth": 5
  }
}

Discover the release history by heading on over to the HISTORY.md file.

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

These amazing people are maintaining this project:

No sponsors yet! Will you be the first?

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Unless stated otherwise all works are:

and licensed under:

6.11.0

3 years ago

6.10.0

3 years ago

6.9.0

3 years ago

6.8.0

4 years ago

6.7.0

4 years ago

6.6.0

4 years ago

6.5.0

4 years ago

6.4.0

4 years ago

6.3.0

4 years ago

6.2.0

4 years ago

6.1.0

4 years ago

6.0.0

4 years ago

5.6.0

4 years ago

5.5.0

4 years ago

5.4.0

4 years ago

5.3.0

4 years ago

5.2.0

4 years ago

5.1.0

4 years ago

5.0.0

4 years ago

4.1.0

5 years ago

4.0.1

6 years ago

3.0.1

7 years ago

3.0.0

8 years ago

2.6.0

8 years ago

2.5.0

8 years ago

2.4.13

9 years ago

2.4.12

9 years ago

2.4.11

10 years ago

2.4.10

10 years ago

2.4.9

10 years ago

2.4.8

10 years ago

2.4.7

10 years ago

2.4.6

10 years ago

2.4.4

11 years ago

2.4.3

11 years ago

2.4.2

11 years ago

2.4.1

11 years ago

2.4.0

11 years ago

2.3.10

11 years ago

2.3.9

11 years ago

2.3.8

11 years ago

2.3.7

11 years ago

2.3.6

11 years ago

2.3.5

11 years ago

2.3.4

11 years ago

2.3.3

11 years ago

2.3.2

11 years ago

2.3.1

11 years ago

2.3.0

11 years ago

2.2.1

11 years ago

2.2.0

11 years ago

2.1.6

11 years ago

2.1.5

12 years ago

2.1.4

12 years ago

2.1.3

12 years ago

2.1.2

12 years ago

2.1.1

12 years ago

2.1.0

12 years ago

2.0.3

12 years ago

2.0.2

12 years ago

2.0.1

12 years ago

1.1.0

12 years ago

2.0.0

12 years ago

1.0.0

12 years ago

0.1.0

12 years ago