0

我有一些常用文件,如记录器、秒表、指标等。现在,我想将它们全部添加到 1 common.coffee 中,并将这些文件放在 lib 下的公共文件夹中。

lib/common/logger.coffee
lib/common/metrics.coffee
lib/common/stopwatch.coffee
lib/common.coffee

现在,当我必须使用这些文件时。我只是做一个

require( 'lib/common' )

并且应该能够调用记录器类

lib 文件中的likelogger.info等。

怎么做呢?下面是 common.coffee,但每当我必须使用它时,它要求我说“​​Common.logger”。我不想要通用前缀

nconf = require('nconf')

environment = process.env.NODE_ENV || 'development'

nconf.file 'environment', "config/#{environment}.json"
nconf.file 'default', 'config/default.json'

module.exports = {
  logger: require('lib/common/logger')
  metrics: require('lib/common/metrics') nconf
  stopwatch: require('lib/common/stop_watch')
}

另外,如何制作 common 文件夹的模块,以便我可以使用 npm 安装它。

4

1 回答 1

2

您可以在 require 调用中使用解构分配。

{logger, metrics, stopwatch} = require("lib/common")

另一种方法是使用像 grunt.js 这样的构建工具并在构建最终部署工件之前调用连接任务。

于 2012-11-05T10:26:47.753 回答