Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/agilord/ulid

Ulid implementation in Dart
https://github.com/agilord/ulid

Last synced: 7 days ago
JSON representation

Ulid implementation in Dart

Awesome Lists containing this project

README

        

# Ulid implementation in Dart

Lexicographically sortable, 128-bit identifier (UUID) with 48-bit timestamp and 80 random bits.
Canonically encoded as a 26 character string, as opposed to the 36 character UUID.

Original implementation: https://github.com/alizain/ulid/

## Usage

A simple usage example:

````dart
import 'package:ulid/ulid.dart';

main() {
print(Ulid());
print(Ulid().toUuid());
}
````

## Links

- [source code][source]
- contributors: [Agilord][agilord]

[source]: https://github.com/agilord/ulid
[agilord]: https://www.agilord.com/