Skip to main content
Deno 2 is finally here 🎉️
Learn more

Chimera

A fantastic configuration library for Deno

import { auto } from "chimera";

interface Config {
  username: string;
  maxconn: number;
  nested: {
    foo: string;
  };
  // ...
}

const config: Config = await auto({ name: "example" });
console.log(config);

See the documentation for detailed usage