在nodejs中,有没有办法可以做到这一点?
//require something here and inject in this module
//all the properties visible in that module ex:
require("color");
//inject directly making properties from 'color' module global to this module.
console.log(red);
//'red' variable here came from 'color' module
我不知道这是否已经正确或者我遗漏了什么。