Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Beholder is a cross-platform file watcher for Node.js.
Install via npm:
$ npm install beholder
var beholder = require('beholder')
var watcher = beholder('**/*')
watcher.on('ready', function() {
console.log("Beholder ready and watching these files: ")
console.dir(watcher.list())
})
watcher.on('any', function(file, event) {
console.log('%s had event %s', file, event)
})
watcher.on('change', function(file) {
console.log('%s has been modified', file)
})
watcher.on('new', function(file) {
console.log('%s has been created', file)
})
watcher.on('remove', function(file) {
console.log('%s has been removed', file)
})
watcher.on('error', function(err) {
console.log(err)
})
Create a new beholder to watch files and directories matching the specified pattern. Specify a callback that will be invoked after the initial set of files have begun to be watched, or listen for the 'ready' event.
See the minimatch documentation for details on valid file patterns.
interval
- The interval for file polling. Only used for large file sets, defaults to 5007.persistent
- Continue to run as long as files are being watched. Defaults to true.includeHidden
- Include hidden dotfiles on the watch list. Defaults to false.exclude
- An array of patterns to exclude from the watch list.any
- Emitted whenever a watched file has been modifed, added or removed.change
- Emitted whenever a watched file has beed mofified.new
- Emitted whenever a file is added to the watch list.remove
- Emitted when a file is deleted.error
- Emitted whenever an unhandled error is generated.ready
- Emitted after all initial files have begun to be watched.pattern
to the watch list. Specify silent
to suppress events.filePath
from the watch list. Specify silent
to suppress events.silent
to suppress events.Beholder uses fs.watch() by default, but will fallback to stat polling automatically to handle
large file sets. Use the interval
option noted above for fine-grained control over the
polling time when needed.
To run the test suite, invoke the following commands in the repository:
$ npm install
$ npm test
(The MIT License)
Copyright (c) 2013 Charles Moncrief <cmoncrief@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Robust cross-platform file watcher
The npm package beholder receives a total of 39 weekly downloads. As such, beholder popularity was classified as not popular.
We found that beholder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.