
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
walk through directory trees and apply an action on every file (synchronous dive)
diveSync is a tiny module for node that is able to recursively walk („dive“) a directory tree. diveSync is the synchronous version of dive.
var diveSync = require("diveSync");
diveSync(process.cwd(), function(err, file) {
if (err) throw err;
console.log(file);
});
This will list all files in your current working directory. The function call blocks until all files are handled.
You may also apply options to the function call.
dive(dir[, opt], action);
The default options are
{
recursive: true, // - If set to false, this will ignore subdirectories.
all: false, // - If set to true, this will show "dot files" and
// files in "dot directories", e.g. ".gitinore" or
// ".git/HEAD".
directories: false // - If set to true, this will show directories, too.
filter: function filter(path, dir) { return true; }
// - Function that returns true for all paths that should
// not be ignored.
}
filter takes two arguments (path, dir). path defines the path to file in
the file system. dir is true, if path is a directory, otherwise false.
You can use this to filter out specific files or directories by their pathname.
FAQs
walk through directory trees and apply an action on every file (synchronous dive)
The npm package diveSync receives a total of 1,889 weekly downloads. As such, diveSync popularity was classified as popular.
We found that diveSync 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.