0.0.5 • Published 8 years ago

envarizer v0.0.5

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

envarizer

build-status Known Vulnerabilities

Takes a bash shell export command and turns it into a json object

Why you ask? I found myself doing it more than once by hand.

Prerequisite

This is a Node.js package so needs node.js runtime.

Installation

This package is published on npmjs.com

npm install envarizer

Usage

envarizer ./test/test-file.sh

example input

#!/usr/bin/env bash
export ENV_VAR_A=/var/log
export ENV_VAR_B=a string
export ENV_VAR_C=john.smyth@example.com

example output

[ ENV_VAR_A: '/var/log',
  ENV_VAR_B: 'a string',
  ENV_VAR_C: 'john.smyth@example.com' ]