npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@trystal/int-to-basenn

v1.3.3

Published

Encode/decode numbers to/from any character set (base62, base26, 'abcd','!*=q',...)

Downloads

84

Readme

Simple function to convert an integer into baseNN representations.

By default a base62 character set is used:

import {encode, decode} from '@trystal/int-to-basenn'

console.log(encode(1000)) // g8
console.log(decode('g8')) // 1000

It supports arbitrary character sets:

console.log(encode(   1000, 'WXYZ')) // ZZYYW
console.log(decode('ZZYYW', 'WXYZ')) // 1000

Supports case insensitive decoding by default.

console.log(encode(   5000, 'ABCDEF')) // DFAFC
console.log(decode('dfafc', 'ABCDEF')) // 5000

It supports mixed case character sets.

console.log(encode(   10000, 'abcABC')) // bbBbBB
console.log(decode('bbBbBB', 'abcABC')) // 10000
console.log(decode('BBBBBB', 'abcABC')) // 37324
console.log(decode('bbbbbb', 'abcABC')) // 9331

It provides base26 convenience functions.

import {base26Encode, base26Decode, Base26, BASE26CHARS} from '@trystal/int-to-basenn'

console.log(BASE26CHARS)                
// ABCDEFGHIJKLMNOPQRSTUVWXYZ

console.log(encode(1000, BASE26CHARS))  // BMM
console.log(base26Encode(1000))         // BMM
console.log(Base26.encode(1000))        // BMM

console.log(decode('BMM', BASE26CHARS)) // 1000
console.log(base26Decode('BMM'))        // 1000
console.log(Base26.decode('BMM'))       // 1000

It provides base36 convenience functions.

import {base36Encode, base36Decode, Base36, BASE36CHARS} from '@trystal/int-to-basenn'

console.log(BASE36CHARS)                
// 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ

console.log(encode(1000, BASE36CHARS))  // RS
console.log(base36Encode(1000))         // RS
console.log(Base36.encode(1000))        // RS

console.log(decode('RS', BASE36CHARS))  // 1000
console.log(base36Decode('RS'))         // 1000
console.log(Base36.decode('RS'))        // 1000

It provides base62 convenience functions.

import {base62Encode, base62Decode, Base62, BASE62CHARS} from '@trystal/int-to-basenn'

console.log(BASE62CHARS) 
// 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ

console.log(encode(1000, BASE62CHARS))  // g8
console.log(base62Encode(1000))         // g8
console.log(Base62.encode(1000))        // g8

console.log(decode('g8', BASE62CHARS))  // 1000
console.log(base62Decode('g8'))         // 1000
console.log(Base62.decode('g8'))        // 1000

It provides base64 convenience functions.

import {base64Encode, base64Decode, Base64, BASE64CHARS} from '@trystal/int-to-basenn'

console.log(BASE64CHARS) 
// ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/

console.log(encode(1000, BASE64CHARS))  // Po
console.log(base64Encode(1000))         // Po
console.log(Base64.encode(1000))        // Po

console.log(decode('Po', BASE64CHARS))  // 1000
console.log(base64Decode('Po'))         // 1000
console.log(Base64.decode('Po'))        // 1000

It provides an option to create a custom converter

import {Converter} from '@trystal/int-to-basenn'

const MyConverter = new Converter('/*=q@Z')

console.log(MyConverter.encode(   5443)) // @****
console.log(MyConverter.decode('@****')) // 5443