📜  nodejs 在运行时更改 env 变量 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:20.880000             🧑  作者: Mango

代码示例1
It isn't possible to modify the env vars 
of a running process. This isn't unique to 
NodeJS processes. It's just how env vars 
work on UNIX like operating systems.
The vars live within the address space of 
the process. And while they are, typically,
initially placed at a well known location
near the top of the stack the current vars are 
likely to be at an arbitrary address in the heap. 
Env vars are intentionally private to each process. 
So unless the program provides an API for 
changing its env vars you can't
modify them once the program is running.