Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amir/node-base62

Node.js Base62 addon
https://github.com/amir/node-base62

Last synced: about 1 month ago
JSON representation

Node.js Base62 addon

Awesome Lists containing this project

README

        

A node.JS C++ addon for representing big numbers in base62.
Suitable for URL shortening services, or any other similar service.

It was written by Amir Mohammad Saied .
-------------------------------------------------------------------------------

To build the module run:

node-waf configure build

This will produce `base62.node` binary module. To use it, make sure the
module's directory is in NODE_PATH.

The module exports two functions `encode`, and `decode`.

encode
------

Encodes an integer to base62.

Here is a basic example:

var sys = require('sys');
var b62 = require('base62);

sys.print(b62.encode(123456789));

/* Output: 8m0Kx */

decode
------

Decodes a string to the original integer encoded by encode function.

var sys = require('sys');
var b62 = require('base62');

sys.print(b62.decode('8m0Kx'));

/* Output: 123456789 */

-------------------------------------------------------------------------------