Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
settings.js
const sel = { user: 'Patron' } module.exports = sel
const { sel } = require('./settings') console.log('user', sel)
sel -> undefined
module.exports = sel
exports.sel = sel; // или module.exports.sel = sel