# fast-base64-encode

> A fast Base64 encoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).

Latest version **1.0.0** (published 2018-09-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install fast-base64-encode
pnpm add fast-base64-encode
yarn add fast-base64-encode
bun add fast-base64-encode
```

## 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 | 1.0.0 |
| Published | 2018-09-03 |
| First published | 2018-08-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Maintainers | linusu |
| Keywords | base64-encode, base64, encode |

## Links

- npm: https://www.npmjs.com/package/fast-base64-encode
- Repository: https://github.com/LinusU/fast-base64-encode
- Homepage: https://github.com/LinusU/fast-base64-encode#readme
- Issues: https://github.com/LinusU/fast-base64-encode/issues
- npm.io page: https://npm.io/package/fast-base64-encode

## 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

- 1.0.0 (latest) — 2018-09-03
- 0.0.1-security — 2018-08-27

## README

# Fast Base64 Encoding

A fast Base64 encoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).

## Installation

```sh
npm install --save fast-base64-encode
```

## Usage

```js
const base64Encode = require('fast-base64-encode')

const data = new Uint8Array(256)

console.log(base64Encode(data))
//=> 'AAAAAAAAAAAAAAAAAAAA'
```

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