Everything we build, documented

Reference documentation for the tools we build and maintain - written by the people who ship them, and kept in step with the code. It starts with our open-source packages.

search-people.ts
import { quickSearch } from "@zanreal/search";

const people = [
  { name: "John Doe", role: "developer" },
  { name: "Jane Smith", role: "designer" },
];

quickSearch(people, "john");
// [{ name: "John Doe", role: "developer" }]

Open Source

Everything here is developed in the open at github.com/zanreal-labs under the MIT license, and each reference page in this section is built from the docs that ship in the package's own repository.