0.2.1 • Published 10 years ago

dune v0.2.1

Weekly downloads
24
License
-
Repository
github
Last release
10 years ago

build status

Dune

An easy to use VM for loading and running scripts.

You pass it code, it returns back its module.exports

Install

npm install dune

API

file() = (full_path_to_file, optional_context, custom_require) ->

var assert = require('assert');
var path = require('path');

var exports = dune.file(path.join(__dirname, 'myfile.js'));

assert.equal(exports, 'hello');

myfile.js

module.exports = 'hello';

string() = (code_to_run, path_to_code, context, custom_require) ->

var assert = require('assert');

var exports = dune.string('module.exports = "hello"');

assert.equal(exports, 'hello');

NOTE! If using node's require() in your code, you will need to pass in the full path where the code would theoretically be present at. Example:

var assert = require('assert');
var path = require('path');

var exports = dune.string(
  'module.exports = require("./myfile.js")',
  path.join(__dirname, 'test.vm')
);

assert.equal(exports, 'hello');

License

MIT-LICENSE

0.2.1

10 years ago

0.2.0

11 years ago

0.1.0

12 years ago

0.0.7

13 years ago

0.0.6

13 years ago

0.0.2

13 years ago

0.0.1

13 years ago