1.0.1 • Published 5 years ago

env-string v1.0.1

Weekly downloads
24,588
License
MIT
Repository
github
Last release
5 years ago

env-string

Inlines env vars in a string that contains $NAME expressions

npm install env-string

Build Status

Usage

var env = require('env-string')
var map = {WORLD: 'world'}

// supports $NAME
console.log(env('hello $WORLD', map)) // 'hello world'

// supports ${NAME}
console.log(env('hello ${WORLD}', map)) // 'hello world'

// supports $NAME-something-else
console.log(env('hello $WORLD-world', map)) // 'hello world-world'

// supports ${NAME:-default-value}
console.log(env('hello ${VERDEN:-world}', map)) // 'hello world'

// vars default to ''
console.log(env('hello $VERDEN', map)) // 'hello '

License

MIT