节点配置全局配置

时间:2018-02-13 01:06:00

标签: javascript node.js typescript configuration node-config

我正在使用最新的node-config。目前,我有几个带有本地配置的项目和另一个带有通用配置的项目。

这是我目前的结构:

ProjectA/configs/{production, staging, integration} ProjectB/configs/{production, staging, integration} Common/configs/{production, staging, integration}

我需要使用本地定义的Common/configs在ProjectA和ProjectB中加载NODE_ENV个文件。

目前是否支持此功能?如何实现类似的东西?

谢谢!

1 个答案:

答案 0 :(得分:1)

我是package application; import java.util.*; import java.text.DateFormat; public class CheckSystemTime implements Runnable { //String locale; public CheckSystemTime(/**String location**/) { //this.locale = location; } public void run() { Date rightNow; DateFormat timeFormatter; String timeOutput; rightNow = new Date(); Locale currentLocale = new Locale("de"); timeFormatter = DateFormat.getTimeInstance(DateFormat.DEFAULT, currentLocale); timeOutput = timeFormatter.format(rightNow); //e.g. MyController.setLabel(timeOutput); doesnt work } } 的维护者。目前不支持此功能。

如果您的配置格式是JavaScript文件(或者您愿意更改它)。您可以使用标准Node.js语法将配置从公共位置加载到node-configProjectA的配置文件中。