config.js 파일 생성
modules.exports = { 'key1' : 'value1', 'key2' : 'value2' }
config.js 파일 사용
var config = require('./config') const a = config.key1 //const a = require('./config').key1