Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/agilord/ulid
- Owner: agilord
- License: bsd-3-clause
- Created: 2017-06-09T21:05:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-08T14:53:03.000Z (4 months ago)
- Last Synced: 2025-01-01T21:12:07.739Z (14 days ago)
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/ulid
- Size: 12.7 KB
- Stars: 38
- Watchers: 4
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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/