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.
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
@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.