# walk-r

> functional directory walk, written with Ramda.js

Latest version **0.0.7** (published 2017-04-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install walk-r
pnpm add walk-r
yarn add walk-r
bun add walk-r
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.7 |
| Published | 2017-04-12 |
| First published | 2017-04-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Nathaniel Martin |
| Maintainers | natethegreatt |

## Links

- npm: https://www.npmjs.com/package/walk-r
- Repository: https://github.com/natethegreatt/walk-r
- Issues: https://github.com/natethegreatt/walk-r/issues
- npm.io page: https://npm.io/package/walk-r

## Dependencies (1)

- [ramda](https://npm.io/package/ramda.md) ^0.23.0

## Recent versions

- 0.0.7 (latest) — 2017-04-12
- 0.0.6 — 2017-04-11
- 0.0.5 — 2017-04-11
- 0.0.4 — 2017-04-11
- 0.0.3 — 2017-04-10
- 1.0.3 — 2017-04-10
- 1.0.2 — 2017-04-10
- 1.0.1 — 2017-04-10
- 1.0.0 — 2017-04-10

## README

# walk-r
A simple directory walk which returns an array of file paths, written in a declarative style with Ramda.js

Usage:
```
let walk = require('walk-r')
let absoluteFilePaths = walk(path.join(__dirname, 'folder'))
let files = filePaths.map(f => fs.readFileSync(f))

let relativeFilePaths = walk('folder')
```

Give an absolute directory name, receive an array of absolute filepaths.
Give a relative directory name, recieve an array of relative filepaths.

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