Popularity
3.7
Growing
Activity
0.0
Declining
20
3
6
Monthly Downloads: 19,622
Programming language: Elixir
License: MIT License
Tags:
Text And Numbers
Latest version: v1.2.1
base62 alternatives and similar packages
Based on the "Text and Numbers" category.
Alternatively, view base62 alternatives based on common mentions on social networks and blogs.
-
money
Elixir library for working with Money safer, easier, and fun... Is an interpretation of the Fowler's Money pattern in fun.prog. -
nanoid
Elixir port of NanoID, a secure and URL-friendly unique ID generator. https://hex.pm/packages/nanoid -
secure_random
Convenience library for random base64 strings modeled after my love for Ruby's SecureRandom -
chinese_translation
An elixir module to translate simplified Chinese to traditional Chinese, and vice versa, based on wikipedia data -
abacus
Parses and evaluates mathematical expressions in Elixir. Inspired by math.js -
veritaserum
Sentiment analysis based on afinn-165, emojis and some enhancements. -
inet_cidr
CIDR library for Elixir that is compatible with Erlang's :inet and supports both IPv4 and IPv6 -
haikunator
Generate Heroku-like memorable random names to use in your apps or anywhere else. -
Ex_Cldr_Units
Unit formatting (volume, area, length, ...) functions for the Common Locale Data Repository (CLDR) -
mt940
MT940 (standard structured SWIFT Customer Statement message) parser for Elixir.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of base62 or a related project?
Popular Comparisons
README
Base62 




Base62 encoder/decoder in pure Elixir.
Usage
Encode
iex> Base62.encode(28)
"S"
iex> Base62.encode(44)
"i"
iex> Base62.encode(280)
"4W"
Decode!
iex> Base62.decode!("100")
3844
iex> Base62.decode!("igas")
10650166
iex> Base62.decode!("EvilMartians")
776957886790921093120
Decode
iex> Base62.decode("42")
{:ok, 250}
iex> Base62.decode("Игас")
:error
iex> Base62.decode("Elixir")
{:ok, 13531063449}
License
Released under the MIT License.
*Note that all licence references and agreements mentioned in the base62 README section above
are relevant to that project's source code only.