![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-forge/maker-base
Advanced tools
@electron-forge/maker-base is a base class for creating makers in Electron Forge, which are responsible for packaging Electron applications into distributable formats.
Creating a Custom Maker
This code demonstrates how to create a custom maker by extending the MakerBase class. The custom maker can implement its own logic for packaging an Electron application.
const { MakerBase } = require('@electron-forge/maker-base');
class MyCustomMaker extends MakerBase {
constructor() {
super();
this.name = 'my-custom-maker';
}
async make({ dir, appName, targetPlatform, targetArch }) {
console.log(`Making ${appName} for ${targetPlatform} on ${targetArch}`);
// Custom packaging logic here
}
}
module.exports = MyCustomMaker;
electron-packager is a tool for packaging Electron applications. It provides a straightforward way to create distributable versions of your app. Unlike @electron-forge/maker-base, which is a base class for creating custom makers, electron-packager is a complete solution for packaging.
electron-builder is a comprehensive solution for building and packaging Electron applications. It supports a wide range of target formats and platforms. Compared to @electron-forge/maker-base, which requires custom implementation for each maker, electron-builder offers a more out-of-the-box experience with extensive configuration options.
6.0.0-beta.42 (2019-07-15)
index.js
in production (#1021) (d70ae5c2)FAQs
Base maker for Electron Forge
The npm package @electron-forge/maker-base receives a total of 185,011 weekly downloads. As such, @electron-forge/maker-base popularity was classified as popular.
We found that @electron-forge/maker-base demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.