1.0.10 • Published 3 months ago

base62str v1.0.10

Weekly downloads
253
License
MIT
Repository
github
Last release
3 months ago

base62str

Encode/Decode strings to Base62 strings. Useful to convert any string to an encoded string that only contains letters and numbers.

How to install:

npm install base62str

How to include

import Base62Str from "base62str";

If you want to use the library in nodejs then use require as follows:

const Base62Str = require("base62str").default;

To use

Create an instance

First create an instance:

  const base62 = Base62Str.createInstance();  

If you prefer you can create an instance with inverted CharacterSet:

  const base62 = Base62Str.createInstanceWithInvertedCharacterSet();

Encoding:

   const encodedString = base62.encodeStr("Hello World!");
   // encodedString => T8dgcjRGkZ3aysdN

Decoding:

   const decodedString = base62.decodeStr(encodedString);
   // decodedString => Hello World!

Donations

Creating these libraries is my hobie. If you consider my work useful to you, please consider buying me a coffee. Your contribution keeps me motivated to created and maintain these useful libraries.

paypal

QR

1.0.10

3 months ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago