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