FLUTTER ECOSYSTEM

agilord/ulid

Dart 中的 Ulid 實現

ulid 專案封面
Stars
41
Forks
9
最近推送(UTC)
2026年9月16日
專案狀態
未封存
Agilord, LLC GitHub avatar
GITHUB Organization

Agilord, LLC ↗

語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 2 項
  • lints開發依賴^6.0.0
  • test開發依賴^1.0.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 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/

Specification: https://github.com/ulid/spec

Usage

A simple usage example:

import 'package:ulid/ulid.dart';

void main() {
  print(Ulid());
  print(Ulid().toUuid());
  print(Ulid().toCanonical());
  print(Ulid().toBase32()); // uppercase, spec-aligned format
}

Links