Я хочу запустить файл js в файле js с другим разрешением. Вот так:
main.js
(который начинается)
config = JSON.parse(require("./config.json")) // <- should be possible
console.log(config.authkey) // <- should be possible
require("./randomJSFile.js").run()
randomJSFile.js
(который будет выполнен main. js)
exports.run = () => {
let config = JSON.parse(require("./config.json") // <--- this should not be possible, only the main.js file should have access to the config.json file
console.log(config.authkey) // should not be possible
}
Кто-нибудь знает, как сделать что-то подобное?