Skip to content

DigitalBastion/dotconfig

Repository files navigation

dotconfig

A powerful configuration builder using various sources: environment variables, local json files, and secure key vaults.

Supported Providers

  • In memory
  • Environment variables
  • Json file

Getting Started

import { ConfigurationBuilder } from "dotconfig";

const configuration = await new ConfigurationBuilder()
  .add(new MemoryConfigurationSource(new Map<string, string>([["a:b:c", "1"]])))
  .build();

const value = configuration.get("a:b:b"); // => "1"

Readme WIP.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published