Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@electron-forge/maker-zip

Package Overview
Dependencies
Maintainers
5
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@electron-forge/maker-zip

ZIP maker for Electron Forge

  • 7.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
114K
decreased by-10.91%
Maintainers
5
Weekly downloads
 
Created

What is @electron-forge/maker-zip?

@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.

What are @electron-forge/maker-zip's main functionalities?

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'],
    }),
  ],
};

Other packages similar to @electron-forge/maker-zip

FAQs

Package last updated on 26 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc