Appearance
config 配置
get(name)
参数
参数 | 类型 | 说明 |
---|---|---|
name | string | 名字 |
返回值
string
代码
javascript
const conf = require('config')
console.log('主群: ' + conf.get('group.main'))
getObject(name)
尝试将 value
转换成 object
, 失败返回 undefined
参数
参数 | 类型 | 说明 |
---|---|---|
name | string | 名字 |
返回值
object
代码
javascript
const conf = require('config')
console.log('主群: ' + conf.get('group.main'))