https://github.com/extg/recursive-stats
https://github.com/extg/recursive-stats
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/extg/recursive-stats
- Owner: extg
- Created: 2017-03-08T22:48:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-08T23:04:11.000Z (over 9 years ago)
- Last Synced: 2025-09-29T01:53:58.637Z (9 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# recursive-stats
## Install
```bash
npm install recursive-stats --save
```
## Usage
```js
const stats = require('recursive-stats');
stats('/path/to/a', (err, res) => {
if (err) {
console.log(err);
}
console.log(res);
})
```