node-module-manager
v1.0.0
Published
mounts npm modules in the current project at runtime and fetches them if they aren't available locally yet
Downloads
2
Maintainers
Readme
node-module-manager
Mounts NPM-Modules at runtime into the running project
Usage
var ModuleManager = require("ModuleManager");
var mysql = ModuleManager.get('mysql');
//use it!
mysql.createConnection(/*[..]*/);
Restrictions
For security-reasons and my use-case i currently restricted the use to the mysql package.