Sqids (pronounced "squids") is a small library that lets you generate unique IDs from numbers. It's good for link shortening, fast & URL-safe ID generation and decoding back into numbers for quicker database lookups.
Features:
Good for:
Not good for:
Install Sqids via Clojars
[org.clojars.ng-esque/sqids-cljs "1.0.0"]
org.clojars.ng-esque/sqids-cljs {:mvn/version "1.0.0"}
implementation("org.clojars.ng-esque:sqids-cljs:1.0.0")
<dependency>
<groupId>org.clojars.ng-esque</groupId>
<artifactId>sqids-cljs</artifactId>
<version>1.0.0</version>
</dependency>
Clone this repo:
git clone https://github.com/sqids/sqids-cljs
cd sqids-cljs
lein fig:test
The main Sqids library is in src/sqids_cljs/core.cljs, unit tests are in ***test/sqids_cljs/***.
Use the following to format & check changes:
lein cljfmt
lein clj-kondo
Simple encode & decode:
(let [sqids (new Sqids {})
id (.encode sqids [1 2 3]) ;; => "86Rf07
numbers (.decode sqids id)]) ;; => [1 2 3]
Due to multi-arity being unsupported by (deftype ) an options argument must be passed at initialisation. Empty uses defaults.
(ns example.core
(:require
[sqids-cljs.core :refer [Sqids]]))
(let [sqids (Sqids. {})]) ;; uses default-options
Note 🚧 Because of the algorithm's design, multiple IDs can decode back into the same sequence of numbers. If it's important to your design that IDs are canonical, you have to manually re-encode decoded numbers and check that the generated ID matches.
Enforce a minimum length for IDs:
(let [sqids (new Sqids {:minLength 10})
id (.encode sqids [1 2 3]) ;; => "86Rf07xd4z"
numbers (.decode sqids id)]) ;; => [1 2 3]
Randomize IDs by providing a custom alphabet:
(let [sqids (new Sqids {:alphabet: "FxnXM1kBN6cuhsAvjW3Co7l2RePyY8DwaU04Tzt9fHQrqSVKdpimLGIJOgb5ZE"})
id (.encode sqids [1 2 3]) ;; => "B4aajs"
numbers (.decode sqids id)]) ;; => [1 2 3]
Prevent specific words from appearing anywhere in the auto-generated IDs:
(let [sqids (new Sqids {:blocklist (set ["86Rf07"]){)
id (.encode sqids [1 2 3]) ;; => "se8ojk"
numbers (.decode sqids id)]) ;; => [1 2 3]
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close