Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gurumian/node-ls
ls recursively
https://github.com/gurumian/node-ls
Last synced: 26 days ago
JSON representation
ls recursively
- Host: GitHub
- URL: https://github.com/gurumian/node-ls
- Owner: gurumian
- Created: 2020-03-14T16:09:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:52:17.000Z (almost 2 years ago)
- Last Synced: 2024-04-30T05:23:25.190Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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}`)
}
})
```