# gulp-buffer

> Make sure all gulp file contents are available as buffer

Latest version **0.0.2** (published 2014-01-26) · 0 weekly downloads

## Install

```sh
npm install gulp-buffer
pnpm add gulp-buffer
yarn add gulp-buffer
bun add gulp-buffer
```

## 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.2 |
| Published | 2014-01-26 |
| First published | 2014-01-21 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 15 |
| Author | Jérôme Wagner |
| Maintainers | jeromew |
| Keywords | gulp, gulpplugin |

## Links

- npm: https://www.npmjs.com/package/gulp-buffer
- Repository: https://github.com/jeromew/gulp-buffer
- Issues: https://github.com/jeromew/gulp-buffer/issues
- npm.io page: https://npm.io/package/gulp-buffer

## Dependencies (1)

- [through2](https://npm.io/package/through2.md) ~0.4.0

## Recent versions

- 0.0.2 (latest) — 2014-01-26
- 0.0.1 — 2014-01-21

## README

# gulp-buffer

  Some gulp plugins do not support streaming file contents. gulp-buffer and gulp-stream come to the rescue.
  
  There are 3 main reasons why a gulp plugin may not support stream :

    * The stream support is on the roadmap but has not been added to the plugin
    * The underlying library used for the transformation does yet support a streaming API
    * The content transformation is not very well suited for streaming (think of content.reverse() for example where you need the end of the file first)

  In all these cases, simply add gulp-buffer in front of such a plugin, and it will make sure that the plugin is presented only with buffers.

  When you want to go back to full streaming capabilities, add gulp-stream and it will make sure that all your files are streamed again.


[![build status](https://secure.travis-ci.org/jeromew/gulp-buffer.png)](http://travis-ci.org/jeromew/gulp-buffer)

## Installation

```bash
$ npm install gulp-buffer
```

# Licence

  MIT

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