1.0.0 • Published 10 years ago

expandenv v1.0.0

Weekly downloads
2,516
License
MIT
Repository
github
Last release
10 years ago

#expandenv

Environment Variable injection for your strings

##Installation

npm install --save expandenv

##Usage

Expandenv takes a string and injects the environment variable for each $KEYWORD it finds. If none is available it will leave the $KEYWORD. It also allows you to pass in a hash that will override the process.env variables you specify.

var expandenv = require('expandenv')
  , dir = expandenv("$PWD") // "/the/current/directory/"
  , example = expandenv("Hi $PARENT how are you?", {PARENT: 'Mom'}) // "Hi Mom how are you?"

Made with ⚡️ by @taterbase