Get the current system's unique hardware ID
pnpm i hwidimport { hwid } from "hwid";
// detects platform automatically
const id: string = await hwid();Supported platforms: windows, macos, and linux
// will only work on macos
import { hwid } from "hwid/macos";
const id: string = await hwid();pnpm dlx hwid@latest