Skip to content

Instantly share code, notes, and snippets.

@wmakeev
Created October 22, 2014 10:31
Show Gist options
  • Save wmakeev/ccb9b771f7ca7a3304ba to your computer and use it in GitHub Desktop.
Save wmakeev/ccb9b771f7ca7a3304ba to your computer and use it in GitHub Desktop.
Setup unknown npm package on require
(function(){
var r=require;
require=function (n){
try{
return r(n);
}
catch(e){
r('child_process').exec('npm i ' + n,function (err,body){
try{
console.log('Module "' +n + '"" not found, try to install. Please restart the app\n' + body );
return r(n);
}
catch(e){
}
});
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment