Attributes
Includes Deno configuration
Repository
Current version released
4 years ago
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