File size: 749 Bytes
f6f0c71 c9bbadf f6f0c71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import fs from 'fs'
import ini from 'ini'
const source = "config.ini"
const content = fs.readFileSync(source, { encoding: "utf-8" })
const config = ini.parse(content)
class ConfigLoader {
constructor() {
if (!ConfigLoader.instance) {
ConfigLoader.instance = this
}
return ConfigLoader.instance
}
/**
* Get the value in config.ini
* @param {string} section
* @param {string} key
* @returns {Promise<string>}
*/
load(section, key) {
if (Object.keys(config[section]).includes(key)) {
return config[section][key]
} else {
throw new TypeError(`Unknown key: ${key}`)
}
}
}
export const configLoader = new ConfigLoader()
|