🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

env-string

Inlines env vars in a string that contains $NAME expressions

1.0.1
latest
Version published
Weekly downloads
270K
-5.37%
Maintainers
1
Weekly downloads
 
Created

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

FAQs

Package last updated on 09 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts