Open source we run in production

Each one started as something a client project needed, and stayed because it kept paying for itself. MIT licensed, published under the @zanreal scope, documented here in full.

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" }]

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

Open Source