base58encoder

Base 58 encoding and decoding with String using Flickr Alphabet (see Wikipedia article)
installation
$ npm install base58encoder
Usage
const encoder = require('base58encoder');
console.log(encoder.encode('1000456987'));
console.log(encoder.decode('3LhmXSzSZVxzU4'));
console.log(encoder.encode('var=умартах'));
console.log(encoder.decode('5UMuUcfmjqiNQeBakyNGpzAqV'));
Resources
uses base-x initialized with ALPHABET = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ';
Licensing
Licensed under the MIT License
A copy of the license is available in the repository's LICENSE file.