# uuencode

> Node.js implementation of the Unix program uuencode.

Latest version **0.0.4** (published 2016-04-02) · 0 weekly downloads

## Install

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

## Health

**Score 18/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2016-04-02 |
| First published | 2014-02-18 |
| Weekly downloads | 0 |
| TypeScript types | separate (@types/uuencode) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Zac Barton |
| Maintainers | zacbarton |
| Keywords | uuencode, uudecode, encode, decode |

## Links

- npm: https://www.npmjs.com/package/uuencode
- Repository: https://github.com/zacbarton/node-uuencode
- Homepage: https://github.com/zacbarton/node-uuencode#readme
- Issues: https://github.com/zacbarton/node-uuencode/issues
- npm.io page: https://npm.io/package/uuencode

## 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.0.4 (latest) — 2016-04-02
- 0.0.3 — 2015-04-21
- 0.0.1 — 2014-02-18

## README

uuencode
========

Node.js implementation of the Unix program uuencode.

More information on the uuencode encoding can be found [here](http://en.wikipedia.org/wiki/Uuencoding).

Installation
--------

    npm install -g uuencode

Examples
--------

The following examples show you how to use uuencode.

```javascript
var uuencode = require('uuencode');

// encode something
var encoded = uuencode.encode('Unix-to-Unix encoding');
// '556YI>"UT;RU5;FEX(&5N8V]D:6YG\n'

// decode something
var decoded = uuencode.decode('556YI>"UT;RU5;FEX(&5N8V]D:6YG\n');
// 'Unix-to-Unix encoding'
```

Running Tests
----

    $ npm test

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