URL作为Node JS中的环境变量

时间:2018-10-01 15:29:02

标签: node.js rest url environment-variables

我正在为Node js和Cassandra中的HTTP请求(GET,POST,PUT,DELETE)提供微服务。我想知道是否可以将URL设置为另一个文件中的环境变量,然后将其传递给任何特定请求?

1 个答案:

答案 0 :(得分:1)

您可以在config.js文件中使用配置变量,如下所示:

var myConfig = {
   url: <your url>
}

module.exports = myConfig;

然后将其导入另一个文件:

const myConfig = require('./myConfig');

console.log(myConfig.url);

环境变量的处理方式不同。

您启动具有环境变量的节点:

URL=<MyURL> node index.js

然后您可以像这样引用环境变量:

console.log(process.env.URL)