An open API service indexing awesome lists of open source software.

https://github.com/extg/recursive-stats


https://github.com/extg/recursive-stats

Last synced: 6 months ago
JSON representation

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);
})
```