Popularity
3.6
Declining
Activity
0.0
Stable
23
3
4

Monthly Downloads: 1,542
Programming language: Elixir
License: MIT License
Tags: HTTP    

mnemonic_slugs alternatives and similar packages

Based on the "HTTP" category.
Alternatively, view mnemonic_slugs alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of mnemonic_slugs or a related project?

Add another 'HTTP' Package

README

Mnemonic Slugs

Mnemonic Slugs is an Elixir library that generates easy to remember slugs. It uses a slightly enhanced word list curated by Oren Tirosh as part of his mnemonic encoding project.

A fork of the original project can be found here.

Installation

Add mnemonic_slugs to your list of dependencies in mix.exs:

def deps do
  [{:mnemonic_slugs, "~> 0.0.3"}]
end

and update your dependencies with mix deps.get.

Usage

You can generate slugs two ways:

  iex> MnemonicSlugs.generate_slug
  "aurora-bermuda"

  iex> MnemonicSlugs.generate_slug(10)
  "karate-textile-jungle-patrol-veteran-clone-nerve-stone-soviet-sting"

Full Documentation is at HexDocs.