description |
---|
Import an existing Electron project to use Electron Forge. |
Importing an existing Electron app into the Electron Forge workflow is very straightforward:
{% tabs %} {% tab title="Yarn 1" %}
cd my-app
yarn add --dev @electron-forge/cli
yarn electron-forge import
{% endtab %}
{% tab title="NPM" %}
cd my-app
npm install --save-dev @electron-forge/cli
npx electron-forge import
{% endtab %} {% endtabs %}
{% hint style="info" %} If you're already using other Electron tooling (including migrating from Electron Forge v5), it will try to automatically migrate the settings as much as possible, but some of it may need to be migrated manually. {% endhint %}