# char-buffer

> Collect CharCodes and convert them to string.

Latest version **2.0.0** (published 2019-09-22) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2.0.0 |
| Published | 2019-09-22 |
| First published | 2014-05-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=8 |
| Dependencies | 0 |
| Unpacked size | 40.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Michael Mayer |
| Maintainers | schnittstabil |
| Keywords | Char, CharCode, ASCII, Buffer, CharBuffer, NodeBuffer, StringArrayBuffer, StringBuffer, TypedArrayBuffer, TypedArray, Uint16Array, Array, String |

## Links

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

## Alternatives

- [d3-force-3d](https://npm.io/package/d3-force-3d.md) — 1.0M weekly downloads
- [ng2-charts](https://npm.io/package/ng2-charts.md) — 486.8K weekly downloads
- [@arcgis/core](https://npm.io/package/@arcgis/core.md) — 257.8K weekly downloads
- [react-sparklines](https://npm.io/package/react-sparklines.md) — 249.3K weekly downloads
- [react-native-gifted-charts](https://npm.io/package/react-native-gifted-charts.md) — 182.3K weekly downloads

## Recent versions

- 2.0.0 (latest) — 2019-09-22
- 1.0.1 — 2016-07-27
- 0.8.0 — 2015-11-20
- 0.7.1 — 2014-09-11
- 0.7.0 — 2014-09-11
- 0.6.4 — 2014-09-10
- 0.6.2 — 2014-09-08
- 0.6.1 — 2014-07-14
- 0.6.0 — 2014-07-14
- 0.5.10 — 2014-06-25
- 0.5.9 — 2014-06-25
- 0.5.8 — 2014-06-24
- 0.5.7 — 2014-06-22
- 0.5.6 — 2014-05-23
- 0.5.4 — 2014-05-23
- … 4 more at https://npm.io/package/char-buffer/versions

## README

# char-buffer [![Build Status Image](https://travis-ci.org/schnittstabil/char-buffer.svg)](https://travis-ci.org/schnittstabil/char-buffer) [![Coverage Status](https://coveralls.io/repos/github/schnittstabil/char-buffer/badge.svg?branch=master)](https://coveralls.io/github/schnittstabil/char-buffer?branch=master) [![Built with Grunt](https://gruntjs.com/cdn/builtwith.svg)](http://gruntjs.com) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)

> Collect CharCodes and convert them to a string.

## Install

```bash
$ npm install --save char-buffer
```

## Usage

```javascript
const CharBuffer = require('char-buffer');

// Create a CharBuffer
var buffer = new CharBuffer();

// Append a CharCode:
buffer.append(102);

// Append two more CharCodes:
buffer.append(111).append(111);

// Output 'foo':
console.log(buffer.toString());
```


## Documentation

* See [API](http://schnittstabil.github.io/char-buffer/api/#!/api) for thorough documentation.

## Related

* [caesar-salad](https://github.com/schnittstabil/caesar-salad) uses `char-buffer` for Caesar, Vigenere and ROT encryption.

## License

MIT © [Michael Mayer](http://schnittstabil.de)

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