:electron: A complete tool for building and publishing Electron applications
Перейти к файлу
Keeley Hammond d1166f15bb Revert "fix(publish): ignore unnecessary files when publishing to npm (#3024)"
This reverts commit ab8ea66124.
2022-10-31 16:31:02 -07:00
.github chore: fix links from userland migration (#3010) 2022-10-27 13:56:33 -07:00
.husky build(deps-dev): upgrade husky to ^5.1.3 2021-03-03 22:47:53 -08:00
ci chore: fix links from userland migration (#3010) 2022-10-27 13:56:33 -07:00
packages Release 6.0.0-beta.71 2022-10-31 16:20:57 -07:00
tools Revert "fix(publish): ignore unnecessary files when publishing to npm (#3024)" 2022-10-31 16:31:02 -07:00
typings fix(plugin-webpack): better webpack-dev-server types (#2952) 2022-10-12 12:49:08 -07:00
.editorconfig chore(core): add *.ts to .editorconfig (#527) 2018-07-06 11:35:26 +10:00
.eslintignore refactor: use custom eslint config + prettier instead of airbnb config (#2520) 2021-09-12 10:44:30 -07:00
.eslintrc.json build: add rule that enforces named exports over default exports (#3000) 2022-10-26 13:16:55 -07:00
.gitignore docs: add READMEs to packages (#2986) 2022-10-26 15:30:31 -07:00
.mocharc.js refactor: typescript projects & docs generation (#2804) 2022-05-03 10:29:31 -07:00
.npmignore chore: make type checking faster, type check entire repo at once 2018-10-24 16:24:27 +11:00
.prettierignore chore(prettier): ignore generated .webpack folders in Webpack tests 2021-10-02 14:41:47 -07:00
.swcrc build: replace babel with swc (#2725) 2022-02-27 00:19:44 -08:00
CHANGELOG.md Update CHANGELOG.md for 6.0.0-beta.71 2022-10-31 16:20:59 -07:00
CNAME Create CNAME 2022-08-22 13:31:54 -07:00
CONTRIBUTING.md docs: update release process (#3032) 2022-10-31 14:08:17 -07:00
LICENSE docs(LICENSE): add a license file 2016-12-03 23:55:46 +11:00
README.md chore: move from electron-rebuild to @electron/rebuild (#3033) 2022-10-31 14:49:51 -07:00
SUPPORT.md feat!: upgrade electron-packager@17 (#2978) 2022-10-24 10:34:43 -07:00
codecov.yml chore: add threshold to codecov (#2811) 2022-04-20 09:24:39 -07:00
package.json Release 6.0.0-beta.71 2022-10-31 16:20:57 -07:00
tsconfig.test.json refactor: typescript projects & docs generation (#2804) 2022-05-03 10:29:31 -07:00
yarn.lock chore: move from electron-rebuild to @electron/rebuild (#3033) 2022-10-31 14:49:51 -07:00

README.md

Electron Forge

Build Status 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-requisities:

  • Node 14.17.5 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

Alternatively (less recommended):

npm install -g @electron-forge/cli
electron-forge init my-new-app
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.