JSPM

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

Node Konfig integration for Vault

Package Exports

  • @willsoto/node-konfig-vault

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@willsoto/node-konfig-vault) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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
pnpm 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",
    },
  ],
});