JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 44
  • Score
    100M100P100Q66269F
  • License Apache-2.0

Node Konfig integration for Vault

Package Exports

  • @willsoto/node-konfig-vault

Readme

Node Konfig Vault

Thanks to Konfig for the inspiration. This library would not have been possible without it.

Documentation is available at https://willsoto.github.io/node-konfig/

Installation

npm install @willsoto/node-konfig-vault
yarn add @willsoto/node-konfig-vault
bun add @willsoto/node-konfig-vault

Quick look

import * as Konfig from "@willsoto/node-konfig-core";
import { VaultLoader } from "@willsoto/node-konfig-vault";

const loader = new VaultLoader({
  secrets: [
    {
      key: "secret/data/database",
    },
  ],
});