UNPKG

dsch-electron-edge-js

Version:

Edge.js: run .NET and Node.js in-process on Electron

10 lines (7 loc) 242 B
// Overview of edge.js: http://tjanczuk.github.com/edge var edge = require('../lib/edge'); var hello = edge.func('103_hello_file.csx'); hello('Node.js', function (error, result) { if (error) throw error; console.log(result); });