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.
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.
@zanreal/search
Fuzzy search over an array of objects you already hold in memory. Weighted fields, exact matches ranked first, and no index to build.
devcontainer
A dev container base image with an interactive setup wizard, so every developer and every coding agent starts from the same environment.
@zanreal/nemo
Compose several Next.js middlewares behind one entry point and dispatch them by path, instead of a single file that keeps growing.