I want to define a variable in one file called vars.js. then I want to access those variable from another file called mybot.js. this is what I ahve in each file:
vars.js:
var token = 'abcfgk6'
mybot.js:
var request = require(./vars.js);
...
bot.login(token);