# ubase64

> Minimal base64 footprint (nothing fancy)

Latest version **1.1.0** (published 2016-09-02) · MIT license · 0 weekly downloads

## Install

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

## 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.1.0 |
| Published | 2016-09-02 |
| First published | 2015-07-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Francois Leurent |
| Maintainers | 131 |
| Keywords | minimal, base64 |

## Links

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

## 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.1.0 (latest) — 2016-09-02
- 1.0.0 — 2015-07-05

## README

# Base64 encoder/decoder for nodejs or the browser, with minimal footprint

# Api 

```
var b64 = require('ubase64');
var encode = b64.encode;
var decode = b64.decode;

console.log(decode(encode("this is bar")) == "this is bar");

//minimal module export usage
var encode = require('ubase64/encode');
var decode = require('ubase64/decode');

```

# Notes
* full code coverage
* minimal footprint for rollup/browserify
* **sane API**

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