This is a fork of edge-js adapted to support Electron.
Compatible with
- Electron 1.4.x - Node.js v6.5.0.
- Electron 1.6.x - Node.js v7.4.0.
- Electron 1.7.x - Node.js v7.9.0.
- Electron 1.8.x - Node.js v8.2.1.
Usage is the same as edge or edge-js, replace require('edge') or require('edge-js') with require('electron-edge-js'):
npm install electron-edge-js-var edge = require('edge');
+var edge = require('electron-edge-js');
var helloWorld = edge.func(function () {/*
async (input) => {
return ".NET Welcomes " + input.ToString();
}
*/});Electron is built using specific version of Node.js. In order to use edge in Electron project you would need to recompile it using the same Node.js version.
electron-edge-js comes precompiled with correct Node.js versions.
- Uses same codebase as
edge-jsthat comes with both latest code changes fromedgeproject and additional fixes and improvements available inedge-jsproject. - Supports majority of Electron versions.