Security News
RubyGems.org Adds New Maintainer Role
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.
Have you ever wanted to watch a folder and all of its files/nested folders for changes. well now you can!
npm install monocle
var monocle = require('monocle')()
monocle.watchDirectory({
root: <root directory>,
fileFilter: <optional>,
directoryFilter: <optional>,
listener: fn(fs.stat+ object), //triggered on file change / addition
complete: <fn> //file watching all set up
});
The listener will recive an object with the following
name: <filename>,
path: <filepath-relative>,
fullPath: <filepath-absolute>,
parentDir: <parentDir-relative>,
fullParentDir: <parentDir-absolute>,
stat: <see fs.stats>
When a new file is added to the directoy it triggers a file change and thus will be passed to your specified listener.
The two filters are passed through to readdirp
. More documentation can be found here
Monocle.watchFiles({
files: [], //path of file(s)
listener: <fn(fs.stat+ object)>, //triggered on file / addition
complete: <fn> //file watching all set up
});
Just an alias of watchFiles
and watchDirectory
so you don't need to tell if that's a file or a directory by yourself. Parameter passed to path
can be a string
or a array
of string
.
Monocle.watchFiles({
path: [], //list of pathes, or a string of path
listener: <fn(fs.stat+ object)>, //triggered on file / addition
complete: <fn> //file watching all set up
});
BSD
FAQs
a tool for watching directories for file changes
The npm package monocle receives a total of 9,360 weekly downloads. As such, monocle popularity was classified as popular.
We found that monocle 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
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.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.