OnoQuick Start
Quick Start
Last updated:
Quick Start
Basic Usage
import { ono } from "@visulima/ono";
// Simple error
throw ono("File not found");
// With cause
try {
// ...
} catch (error) {
throw ono(error, "Failed to process");
}Formatted Messages
throw ono("User %s not found", userId);
throw ono("Invalid config: %j", config);