0.0.9 • Published 4 years ago

cdk8s-config v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

cdk8s-config

Add configuration 🛠 features to your cdk8s project.

GitHub version npm version

Overview 👀

# my-config.yaml
# --------------

my-key:
  key1: value1
// index.ts
// --------

import Config from 'cdk8s-config';

const CONFIG = await Config.fromFile('<path to your config yaml>');
const data = CONFIG.get();

// data = { 'my-key': { 'key1': 'value1' } }

Installation 💻

$ npm i cdk8s-config

or

$ yarn add cdk8s-config

Documentation 📖

Check out the full documentation here: https://kumboleijo.github.io/cdk8s-config/

Run the Examples 🏃🏽‍♀️

$ npx ts-node ./examples/1-basic/
0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.1

4 years ago