Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到一些 NodeJS 程序像这样执行 PARAM=1;node program.js 我假设它把 PARAM=1 放到环境中。如何在节点程序中访问它?谢谢,
是的,PARAM=1正在设置环境变量。
PARAM=1
根据您使用的外壳,您可能需要使用export PARAM=1该设置以使其适用于子进程。否则,该值将仅存在于 shell 中。
export PARAM=1
正如dystroy指出的那样,您的问题的其余部分在这里得到了回答。