:electron: A complete tool for building and publishing Electron applications
Перейти к файлу
Erick Zhao 006ac226ad
fix: re-allow Yarn 2 and above (#3411)
2023-11-17 09:58:26 -08:00
.circleci ci: disable node_modules cache (#3341) 2023-09-14 15:12:58 -07:00
.github ci: use GitHub app for commits (#3373) 2023-10-23 15:33:09 -07:00
.husky build: npm@9 removed the bin command (#3110) 2022-12-09 02:50:21 -08:00
.vscode
ci build: migrate from github actions to circleci (#3188) 2023-06-05 13:41:55 -07:00
packages fix: re-allow Yarn 2 and above (#3411) 2023-11-17 09:58:26 -08:00
tools build: update minimum Node.js version from `16.0.0` to `16.4.0` (#3401) 2023-11-03 14:19:42 -07:00
typings
.editorconfig
.eslintignore feat: esm forge.config.js support (#3358) 2023-11-02 14:14:08 -07:00
.eslintrc.json build: drop unused .npmignore (#3296) 2023-08-16 17:33:58 -07:00
.gitattributes chore: add `.gitattributes` file for proper handling of line endings (#3134) 2023-01-09 09:51:11 -08:00
.gitignore build: add circleci test reporting (#3316) 2023-08-23 10:26:26 -07:00
.markdownlint.json build: lint Markdown (#3247) 2023-06-09 17:29:13 -07:00
.markdownlintignore build: lint Markdown (#3247) 2023-06-09 17:29:13 -07:00
.mocharc.js ci: junit reporter adjustments (#3324) 2023-08-30 14:52:38 -07:00
.prettierignore build: use a single top-level `tsc -b` for all packages (#3090) 2022-11-24 10:01:24 -08:00
CHANGELOG.md chore: update CHANGELOG.md 2022-11-14 15:17:36 -08:00
CNAME
CONTRIBUTING.md docs: updated contributing.md (#3394) 2023-10-30 11:32:15 -07:00
LICENSE
README.md feat!: change electron-packager to @electron/packager (#3408) 2023-11-15 14:52:47 -08:00
SUPPORT.md feat!: change electron-packager to @electron/packager (#3408) 2023-11-15 14:52:47 -08:00
lerna.json v7.0.0 2023-11-15 15:10:47 -08:00
nx.json
package.json feat(publisher-gcs): add Google Cloud Storage publisher (#2100) 2023-11-16 15:14:16 -08:00
tsconfig.base.json build!: update minimum Node.js version from `14.17.5` to `16.0.0` (#3399) 2023-11-03 11:06:58 -07:00
tsconfig.test.json build!: update minimum Node.js version from `14.17.5` to `16.0.0` (#3399) 2023-11-03 11:06:58 -07:00
yarn.lock feat(publisher-gcs): add Google Cloud Storage publisher (#2100) 2023-11-16 15:14:16 -08:00

README.md

Electron Forge

CircleCI Discord npm version license status

A complete tool for building modern Electron applications.

Electron Forge unifies the existing (and well maintained) build tools for Electron development into a simple, easy to use package so that anyone can jump right in to Electron development.


Website | Goals | Docs and Usage | Configuration | Support | Contributing | Changelog


Note: The major version bump between v5.0.0 and v6.0.0 contains major breaking API changes and improvements. If you are new to Forge, we highly recommend using the latest version. If using an older version of Forge, we recommend upgrading to v6.0.0 or later.


Getting Started

Pre-requisites:

  • Node 16.4.0 or higher
  • Git

If you have a more recent version of npm or yarn, you can use npx, or yarn create.

npx create-electron-app my-new-app
# or
yarn create electron-app my-new-app

# then
cd my-new-app
npm start

For more information on creating a new project from a template, see our CLI documentation.

Docs and Usage

For Electron Forge documentation and usage you should check out our website: electronforge.io

Project Goals

  1. Starting with Electron should be as simple as a single command.
  2. Developers shouldn't have to worry about setting up build tooling, native module rebuilding, etc. Everything should "just work" for them out of the box.
  3. Everything from creating the project to packaging the project for release should be handled by one core dependency in a standard way while still offering users maximum choice and freedom.

With these goals in mind, under the hood this project uses, among others:

  • @electron/rebuild: Automatically recompiles native Node.js modules against the correct Electron version.
  • @electron/packager: Customizes and bundles your Electron app to get it ready for distribution.

Contributing

If you are interested in reporting/fixing issues and contributing directly to the code base, please see CONTRIBUTING.md for more information on what we're looking for and how to get started.

Community

Please report bugs or feature requests in our issue tracker. You can find help for debugging your Electron Forge on the Support page, and ask questions in the official Electron Discord server, where there is a dedicated channel for Electron Forge.