# recursive-readir-sync

> list all files recursively by extension given

Latest version **1.0.0** (published 2017-12-24) · 0 weekly downloads

## Install

```sh
npm install recursive-readir-sync
pnpm add recursive-readir-sync
yarn add recursive-readir-sync
bun add recursive-readir-sync
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-12-24 |
| First published | 2017-12-24 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ashok |
| Maintainers | aks- |
| Keywords | directory, lister, list, read, sync |

## Links

- npm: https://www.npmjs.com/package/recursive-readir-sync
- npm.io page: https://npm.io/package/recursive-readir-sync

## Dependencies (1)

- [array-flatten](https://npm.io/package/array-flatten.md) ^2.1.1

## Alternatives

- [csv-to-markdown-table](https://npm.io/package/csv-to-markdown-table.md) — 47.0K weekly downloads
- [@sapphire/ratelimits](https://npm.io/package/@sapphire/ratelimits.md) — 4.4K weekly downloads
- [js-csvparser](https://npm.io/package/js-csvparser.md) — 2.0K weekly downloads
- [@adadapted/js-sdk](https://npm.io/package/@adadapted/js-sdk.md) — 251 weekly downloads
- [@grapecity/spread-sheets-sparklines](https://npm.io/package/@grapecity/spread-sheets-sparklines.md) — 103 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-12-24

## README

# recursive-readir-sync

[![Build Status](https://travis-ci.org/aks-/recursive-readdir-sync.svg?branch=master)](https://travis-ci.org/aks-/recursive-readdir-sync)

Recursively list all files with absolute path in a directory and its subdirectories by the extension given. It does not list the directories themselves.

## Installation

    npm install recursive-readdir-sync

## Usage

```javascript
var recursiveReaddir = require("recursive-readdir-sync");
var files = recursiveReadir('./path')

```

It can also take an extension which lists only files with that extension.

```javascript
var recursiveReaddir = require("recursive-readdir-sync");

// list only files with extension .md
var files = recursiveReadir('./path', '.md')

```

## License

MIT © Ashok

---
_Source: https://npm.io/package/recursive-readir-sync · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
