我无法使用node-config在 Windows 中获取环境变量。
我的 index.js 正在使用 nodemon 运行 CMD。
我打开了一个新的 CMD 并输入set myApp_jwtSecretKey=mySecretHere
// config/custom-environment-variables.json
{
"jwtSecretKey": "myApp_jwtSecretKey"
}
// index.js
console.log(config.get('myApp_jwtSecretKey'))
// I would expect to see 'mySecretHere' but I get an empty string instead
这是为什么?