Minimalist kaomoji for Nanoo Labs documentation.
import { log } from "@nlbs/kaomoji";
console.log(`${log.fatal} Database connection lost!`);
// → [ ✖_✖ ] Database connection lost!
console.log(`${log.success} Deploy complete`);
// → [ ^■^ ] Deploy complete
console.log(`${log.idle} Waiting for task`);
// → [ □_□ ] Waiting for taskOr consume the raw JSON in any language:
import kaomoji from "@nlbs/kaomoji/kaomoji.json" with { type: "json" };import json, urllib.request
data = json.load(open("kaomoji.json"))
print(data["fatal"]) # [ ✖_✖ ]Unknown keys return [ ?_? ].
log.unknown; // → "[ ?_? ]"See KAOMOJI.md for the full kaomoji reference tables.
Consume kaomoji.json from any language — it's the single source of truth. The index.ts wrapper is optional.
@aadnanmt | Nanoo Labs Ecosystems.