npm install
node traceur-runner.js main.js
Created
November 13, 2014 20:38
-
-
Save OliverJAsh/e392a67dd61f94b10abf to your computer and use it in GitHub Desktop.
sandboxed-module test with ES6 source transformer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import http from 'http'; | |
console.log('foo: http:', http); | |
export default 'foo'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import traceurAPI from 'traceur/src/node/api.js'; | |
import SandboxedModule from 'sandboxed-module'; | |
var es6 = source => { | |
var compiler = new traceurAPI.NodeCompiler({ modules: 'commonjs' }); | |
return compiler.compile(source); | |
}; | |
// ES6 modules translate to a CJS module with a default property | |
var sandboxEs6Require = (moduleId, options) => { | |
let defaultOptions = { sourceTransformers: { es6 } }; | |
return SandboxedModule.require( | |
moduleId, | |
Object.assign({}, defaultOptions, options)).default; | |
}; | |
var foo = sandboxEs6Require('./foo', { requires: { http: 'mocked http' } }); | |
console.log('main: foo:', foo); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "sandbox-test", | |
"version": "0.0.0", | |
"dependencies": { | |
"lodash-node": "^2.4.1", | |
"sandboxed-module": "^1.0.2" | |
}, | |
"devDependencies": { | |
"traceur": "0.0.72", | |
"traceur-source-maps": "^1.0.5" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var traceur = require('traceur'); | |
require('traceur-source-maps').install(traceur); | |
var path = require('path'); | |
traceur.require.makeDefault(function (modulePath) { | |
var isDependency = modulePath.indexOf('node_modules') !== -1; | |
return ! isDependency; | |
}); | |
require(path.resolve(process.cwd(), process.argv[2])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment