# pull-concat-files

> Concat pull-stream files into one

Latest version **0.2.0** (published 2017-05-13) · 0 weekly downloads

## Install

```sh
npm install pull-concat-files
pnpm add pull-concat-files
yarn add pull-concat-files
bun add pull-concat-files
```

## 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.2.0 |
| Published | 2017-05-13 |
| First published | 2017-05-13 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jamen Marz |
| Maintainers | jamen |
| Keywords | jamen, pull-stream, pull-build-tools, concat, files |

## Links

- npm: https://www.npmjs.com/package/pull-concat-files
- Repository: https://github.com/jamen/pull-concat-files
- Homepage: https://github.com/jamen/pull-concat-files#readme
- Issues: https://github.com/jamen/pull-concat-files/issues
- npm.io page: https://npm.io/package/pull-concat-files

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 0.2.0 (latest) — 2017-05-13
- 0.1.0 — 2017-05-13

## README

# pull-concat-files

> Concat pull-stream files into one

Simple `file -> file` concat.  Consumes all files in the stream, use something like `pull.filter` or globs beforehand.

```js
pull(
  read(__dirname + '/src/**/*.css'),
  concat('app.css'),
  write(__dirname + '/out/')
)
```

## Install

```sh
npm install --save pull-concat-files
```

```sh
yarn add pull-concat-files
```

## Usage

### `concat(path, sep?)`

Concats all files in the stream into one file under `path`.

```js
pull
  read('src/**/*.css'),
  concat('app.css'),
  write('out/')
)
```

## Also see

 - [`pull-files`] for reading and writing pull-stream files
 - [`pull-bundle`] for bundle your whole project
 - [`pull-bundle-js`] for bundling with browserify

---

Maintained by [Jamen Marz](https://git.io/jamen) (See on [Twitter](https://twitter.com/jamenmarz) and [GitHub](https://github.com/jamen) for questions & updates)

[`pull-files`]: https://github.com/jamen/pull-files
[`pull-bundle`]: https://githun.com/jamen/pull-bundle
[`pull-bundle-js`]: https://github.com/jamen/pull-bundle-js

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