import Repzo from "./index.js"; const go = async () => { const repzo = new Repzo("", { timeout: 10000, env: "staging" }); const res = await repzo.client.find({ search: "Mecca" }); console.log(JSON.stringify(res, null, 2)); }; go();