Skip to content

Instantly share code, notes, and snippets.

@melonmanchan
Created January 26, 2016 14:02
Show Gist options
  • Save melonmanchan/451eaa575de74f992422 to your computer and use it in GitHub Desktop.
Save melonmanchan/451eaa575de74f992422 to your computer and use it in GitHub Desktop.
(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