Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@electron-forge/maker-zip
Advanced tools
@electron-forge/maker-zip is a plugin for Electron Forge that allows you to package your Electron application into a ZIP file. This is useful for distributing your application in a compressed format that can be easily shared and downloaded.
Create ZIP Package
This code sample demonstrates how to configure Electron Forge to use the @electron-forge/maker-zip plugin to create a ZIP package for your Electron application. The configuration specifies the platforms for which the ZIP package should be created.
const { MakerZIP } = require('@electron-forge/maker-zip');
module.exports = {
packagerConfig: {},
makers: [
new MakerZIP({
platforms: ['darwin', 'win32', 'linux'],
}),
],
};
electron-packager is a command-line tool that packages Electron applications for distribution. It can create ZIP files as part of its packaging process, similar to @electron-forge/maker-zip, but it also offers more comprehensive options for packaging, including creating installers and other formats.
electron-builder is a complete solution to package and build a ready-for-distribution Electron app. It supports creating ZIP files among other formats like installers and DMG files. Compared to @electron-forge/maker-zip, electron-builder provides more advanced features and customization options for the build process.
@electron-forge/maker-zip
builds basic .zip
files containing your packaged application. There are no platform specific dependencies for using this maker and it will run on any platform.
Note: There are no configuration options for this target.
{
name: '@electron-forge/maker-zip'
}
FAQs
ZIP maker for Electron Forge
The npm package @electron-forge/maker-zip receives a total of 124,025 weekly downloads. As such, @electron-forge/maker-zip popularity was classified as popular.
We found that @electron-forge/maker-zip 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.