Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Peep is a smart fs.watch wrapper which is lighter and faster, uses as less fs.FSWatchers as possible, and could prevent duplicate watching.
Peep is a smart fs.watch
wrapper which is lighter and faster. It uses as little fs.FSWatcher
s as possible, and can prevent duplicate watching.
Peep has a better .add()
method which can automatically detect nested structures between the current watched files and directories, and choose the best strategy to make it fast and use less resources.
npm install peep --save
var peep = require('peep')();
peep
.on('all', function(event, path){
console.log(event, path);
})
.add('test/foo.js')
.add('test') // 'test' contains 'test/foo.js'
Peep doesn't depend on 'globule'
module. If you prefer the feature of globbing files, you could do this:
var globule = require('globule');
peep.add( globule.find('test/**/*.js') );
Adds file(s) or directories to be watched
peep.add('test/foo.js', 'test/foo2.js');
peep.add(['test/foo.js', 'test/foo2.js']);
Removes file(s) or directories from being watched.
Removes all watched files and directories.
Array.<String>
The current watched files.
What's coming...
FAQs
Peep is a smart fs.watch wrapper which is lighter and faster, uses as less fs.FSWatchers as possible, and could prevent duplicate watching.
We found that peep demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.