![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
electron-edge-js
Advanced tools
This is a fork of edge-js adapted to support Electron.
Electron | Node.Js Version |
---|---|
Electron 17.x | v16.13.0 |
Electron 18.x | v16.13.2 |
Electron 19.x | v16.14.2 |
Electron 20.x | v16.15.0 |
Electron 21.x | v16.16.0 |
Electron 22.x | v16.17.1 |
Electron 23.x | v18.12.1 |
Electron 24.x | v18.14.0 |
Electron 25.x | v18.15.0 |
Electron 26.x | v18.16.1 |
Electron 27.x | v18.17.1 |
Electron 28.x | v18.18.2 |
Electron 29.x | v20.9.0 |
npm install
will compile binaries with correct Node.Js headers for given Electron version.require('edge-js')
with require('electron-edge-js')
:npm install electron-edge-js
-var edge = require('edge-js');
+var edge = require('electron-edge-js');
var helloWorld = edge.func(function () {/*
async (input) => {
return ".NET Welcomes " + input.ToString();
}
*/});
Edge.Js C# code has been migrated to .NET 3.1. If your project is referencing EdgeJs.dll
and/or Edge.js.CSharp.dll
file locations have changed.
node_modules/electron-edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/EdgeJs.dll
node_modules/electron-edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/Edge.js.CSharp.dll
You must install Microsoft Visual C++ Redistributable (x86)
electron-edge-js
?Electron is built using specific version of Node.js. In order to use edge-js
in Electron project you would need to recompile it using the same Node.js version and Electron headers.
electron-edge-js
comes precompiled with correct Node.js versions and headers.
Sample app that shows how to work with .NET Core using inline code and compiled C# libraries.
https://github.com/agracio/electron-edge-js-quick-start
edge-js
and electron-edge-js
will fail to build on MacOS if Visual Studion for mac is installed.
VS installs Mono runtimes that edge-js
fails to access durring nmp install
.
Removing VS does not remove Mono fully and leaves behind incomplete Mono install.
To remove Mono from macOS use this script
sudo rm -rf /Library/Frameworks/Mono.framework
sudo pkgutil --forget com.xamarin.mono-MDK.pkg
sudo rm /etc/paths.d/mono-commands
'electron-edge-js' needs to be specified as external module, some examples
webpack.config.js
externals: {
'electron-edge-js': 'commonjs2 electron-edge-js',
},
node: {
__dirname: false,
__filename: false,
},
vue.config.js
module.export = {
pluginOptions: {
electronBuilder: {
externals:["electron-edge-js"]
}
}
Packaging example based on electron-edge-js-quick-start
.
https://github.com/zenb/electron-edge-js-quick-start
Related issues to use for troubleshooting:
https://github.com/agracio/electron-edge-js/issues/138
https://github.com/agracio/electron-edge-js/issues/39
https://github.com/agracio/electron-edge-js/issues/74
https://github.com/agracio/electron-edge-js/issues/21
Underlying 'edge' component is written as synchronous C++ Node.js module and will cause Electron app to freeze when executing long running .NET code.
For workaround refer to this issue: https://github.com/agracio/electron-edge-js/issues/97
For full documentation see edge-js repo.
Build.bat supports only Electron major versions.
FAQs
Edge.js: run .NET and Node.js in-process on Electron
The npm package electron-edge-js receives a total of 240 weekly downloads. As such, electron-edge-js popularity was classified as not popular.
We found that electron-edge-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.