Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gurumian/node-ls

ls recursively
https://github.com/gurumian/node-ls

Last synced: 26 days ago
JSON representation

ls recursively

Awesome Lists containing this project

README

        

You may need to install `typescript`
```
npm i -g typescript
```

## Install
```bash
npm i llr
```
globally,
```bash
npm i -g llr
```

## Run
```bash
llr
```

## Example

```js
const {ls} = require('llr')

let testPath = '.'
ls({
path: testPath,
callback: (path)=> {
console.log(`${testPath}${path}`)
}
})
```