Importer le nœud de fichier JS local

//Main Code
const lib = require("./otherfile");
//otherfile.js
module.exports = { veryimportantvar };
FrostyAnimations126