Giter VIP home page Giter VIP logo

base45's Introduction

base45

base45 is a base45 encoder/decoder that is fully compatible draft-faltstrom-base45-02.

Node.js Package

Introduction

When using QR or Aztec codes a different encoding scheme is needed than the already established base 64, base 32 and base 16 encoding

Installation

Via npm:

npm install base45
const base45 = require('base45');

API

base45.encode(input)

This function takes a byte string (the input parameter) and encodes it according to base45. The input data must be in the form of a string containing only characters in the range from U+0000 to U+00FF, each representing a binary byte with values 0x00 to 0xFF or a binary buffer in the same range.

const encodedData = base45.encode(input);

To base45-encode a utf8 encoded string.

const base45 = require('base45');
const text = 'foo ยฉ bar ๐Œ† baz';
const encoded = base45.encode(text);
console.log(encoded);
// โ†’ 'X.C82EIROA44GECH74C-J1/GUJCW2'

base45.decode(input)

This function takes a base45-encoded string (the input parameter) and decodes it and returns a buffer. (BREAKING: THIS WAS PREVIOUSLY A STRING IN 2.X version)

const decodedData = base45.decode(encodedData);
const text = base45.decode(encoded).toString('utf-8');
console.log(text);
// โ†’ 'foo ยฉ bar ๐Œ† baz'

Author

| (https://twitter.com/landgren "Follow @landgren on Twitter") |

License

base45 is available under the MIT license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.