Ulid Javascript Versions Save

Universally Unique Lexicographically Sortable Identifier

v2.3.0

6 years ago

v2.2.1

6 years ago

Fix command line version

v2.2.0

6 years ago

v2.0.1

6 years ago

Change default to not fallback to Math.random

v2.0.0

6 years ago

Breaking changes to API with new module format

We're modernizing the library, with proper ES6 exporting, and CommonJS support with rollup. As a result, the API will change.

For TypeScript and ES6 consumers

import { ulid, factory, monotonicFactory } from 'ulid'

ulid()

For CommonJS consumers Sorry guys, if you can tell me a better way, I'd be happy to implement it!

const ULID = require('ulid')

ULID.ulid()

For browser usage

<script src="/path/to/ulid.js"></script>
<script>
    ULID.ulid()
</script>

v1.1.0

6 years ago

Strictly monotonic clocks

Spec'ed out and implemented! See the readme for more information

v1.0.2

6 years ago
  • Specify edge cases in schema
  • Improved jest support