0.1.2 • Published 10 years ago
eval-as-module v0.1.2
eval-as-module
Eval a JS string as if it was a file being required
Installation
npm install eval-as-modulethen in your app:
var run = require('eval-as-module')API
run(str, path)
Runs str as if it were a module at path and returns the module object
run('module.exports = require("eval-as-module")', __filename).exports // => runAnd like eval it also gives you access to the value of the last statement executed in the script.
run('1;2;3').return // => 3