user27111987
user27111987

Reputation: 1085

Running node process - injecting new Environment Variables

Lets say I have a node process running. Is there any way to inject new environment variables in the exiting running process.

Upvotes: 1

Views: 58

Answers (1)

twg
twg

Reputation: 1105

Either use dotenv or take a look at the process.env in the Node.js documentation.

Upvotes: 1

Related Questions