# xxencode

> Node.js version of xxencode

Latest version **1.0.3** (published 2019-07-29) · Apache-2.0 license · 0 weekly downloads

## Install

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

## 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.3 |
| Published | 2019-07-29 |
| First published | 2019-03-19 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | zer0i3 |
| Maintainers | zer0i3 |
| Keywords | xxencode, xxdecode, xxcode |

## Links

- npm: https://www.npmjs.com/package/xxencode
- Repository: https://github.com/zer0i3/XXencode
- Homepage: https://github.com/zer0i3/XXencode#readme
- Issues: https://github.com/zer0i3/XXencode/issues
- npm.io page: https://npm.io/package/xxencode

## Dependencies (2)

- [mocha](https://npm.io/package/mocha.md) ^6.2.0
- [assert](https://npm.io/package/assert.md) ^2.0.0

## 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.3 (latest) — 2019-07-29
- 1.0.2 — 2019-06-20
- 1.0.1 — 2019-03-19
- 1.0.0 — 2019-03-19

## README

xxencode
========

[![Build Status](https://travis-ci.org/zer0i3/node-xxencode.svg?branch=master)](https://travis-ci.org/zer0i3/node-xxencode)

Node.js implementation of xxencode.

More information on the xxencode encoding can be found [here](https://en.wikipedia.org/wiki/Xxencoding).

Installation
--------

```shell
npm install xxencode
```
Examples
--------

The following examples show you how to use xxencode.

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

// encode something
var encoded = xxencode.encode('zer0i3');
// '4SaJmA4Yn'

// decode something
var decoded = xxencode.decode('4SaJmA4Yn');
// 'zer0i3'
```

Running Tests
----

    $ npm test

Note the xxencode utility must be installed for all tests to pass.

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