# joinbuffers

> joins an array of buffers to one big buffer

Latest version **0.1.1** (published 2012-09-19) · public domain license · 0 weekly downloads

## Install

```sh
npm install joinbuffers
pnpm add joinbuffers
yarn add joinbuffers
bun add joinbuffers
```

## 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.1.1 |
| Published | 2012-09-19 |
| First published | 2012-09-03 |
| Weekly downloads | 0 |
| License | public domain |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Bonuspunkt |
| Maintainers | bonuspunkt |
| Keywords | join, buffer, buffers |

## Links

- npm: https://www.npmjs.com/package/joinbuffers
- Repository: https://github.com/Bonuspunkt/joinbuffers
- Issues: https://github.com/Bonuspunkt/joinbuffers/issues
- npm.io page: https://npm.io/package/joinbuffers

## Alternatives

- [flatbuffers](https://npm.io/package/flatbuffers.md) — 6.0M weekly downloads
- [jwt-simple](https://npm.io/package/jwt-simple.md) — 259.5K weekly downloads
- [@exodus/patch-broken-hermes-typed-arrays](https://npm.io/package/@exodus/patch-broken-hermes-typed-arrays.md) — 28.5K weekly downloads
- [@native-to-anchor/buffer-layout](https://npm.io/package/@native-to-anchor/buffer-layout.md) — 12.2K weekly downloads
- [binary-parser-encoder](https://npm.io/package/binary-parser-encoder.md) — 5.3K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2012-09-19
- 0.1.0 — 2012-09-03

## README

#joinBuffers [![Build Status](https://secure.travis-ci.org/Bonuspunkt/joinbuffers.png)](http://travis-ci.org/Bonuspunkt/joinbuffers)
takes an array of small buffers and copies them into a single big one

##installation
    npm install joinbuffers

## example

    var joinBuffers = require('joinbuffers')
    var smallBuffers = [new Buffer('1'), new Buffer('2')];
    var bigBuffer = joinBuffers(smallBuffers);
    console.log(bigBuffer.toString('utf8')); // prints 12

## license
public domain

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