
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
count-files
Advanced tools
Count files, directories, and bytes in a directory recursively.
Ignore files in the count.
In javascript, use it like so:
var countFiles = require('count-files')
var stats = countFiles(dir, function (err, results) {
console.log('done counting')
console.log(results) // { files: 10, dirs: 2, bytes: 234 }
})
setInterval(function () {
console.log('current count', stats) // { files: 4, dirs: 1, bytes: 34 }
}, 500)
count-files
also has a very simple command line tool, use npm install -g count-files
to install.
❯ count-files ./
Counting files and directories in...
/joe/node_modules/count-files
Results:
Files: 13
Dirs: 4
Size: 10 KB
src
can be a directory or a single file path. You can also pass a custom fs, e.g. hyperdrive and path with: {fs: customFs, name: dir}
(see tests for examples).
Callback returns the completed stats
: {files, dirs, bytes}
.
Options include:
opts = {
ignore: function (file) {
return match(['**/*.js'], file) // return true to ignore file
}
dereference: false // dereference any symlinks
}
We find anymatch nice for ignoring files!
That's all folks!
npm test
npm run perf
Some basic performance testing in tests/perf.js
and alternate implementations in lib/
. I think I chose the fastest but didn't test all situations!
ISC
FAQs
count files in a directory recursively
The npm package count-files receives a total of 490 weekly downloads. As such, count-files popularity was classified as not popular.
We found that count-files 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.