var count = 1; // psuedocode // if (words typed begins with @add) require(\'./add.js\'); // if (words typed begins with @remove) require(\'./remo
alternatively, to all other answers
getters & setters
var _variableThing = 1223 module.exports = { get variableThing(){ return _variableThing }, set variableThing(val){ _variableThing = val } }
won't work with direct imports though