{"id":20100478,"url":"https://github.com/felixrieseberg/electron-forge-maker-nsis","last_synced_at":"2025-05-06T06:32:17.391Z","repository":{"id":203800855,"uuid":"647969187","full_name":"felixrieseberg/electron-forge-maker-nsis","owner":"felixrieseberg","description":"An electron-forge maker for NSIS that supports electron-forge v6 and can be used as a replacement for electron-builder. Supports code-signing and basic updates with electron-updater.","archived":false,"fork":false,"pushed_at":"2024-09-14T01:41:48.000Z","size":551,"stargazers_count":4,"open_issues_count":2,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-14T14:34:28.424Z","etag":null,"topics":["electron","electron-forge","nsis","windows"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/felixrieseberg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-05-31T23:27:31.000Z","updated_at":"2024-09-14T01:41:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"94b41a33-e9e9-40bb-a12b-520fe4a5011f","html_url":"https://github.com/felixrieseberg/electron-forge-maker-nsis","commit_stats":null,"previous_names":["felixrieseberg/electron-forge-maker-nsis"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixrieseberg%2Felectron-forge-maker-nsis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixrieseberg%2Felectron-forge-maker-nsis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixrieseberg%2Felectron-forge-maker-nsis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixrieseberg%2Felectron-forge-maker-nsis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felixrieseberg","download_url":"https://codeload.github.com/felixrieseberg/electron-forge-maker-nsis/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224490636,"owners_count":17319983,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["electron","electron-forge","nsis","windows"],"created_at":"2024-11-13T17:15:53.448Z","updated_at":"2024-11-13T17:15:55.010Z","avatar_url":"https://github.com/felixrieseberg.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# electron-forge-maker-nsis [![npm][npm_img]][npm_url]\r\n\r\nAn `electron-forge` maker for NSIS that supports `electron-forge` v6 and can be used as a\r\nreplacement for `electron-builder`. Supports code-signing and basic updates with `electron-updater`.\r\n\r\nThis maker takes two configuration objects: `codesigning` for codesigning and `updater` for `electron-updater` support. Both of them are optional, the feature in question will simply be turned off if not provided.\r\n\r\n- `codesigning` is passed directly to [@electron/windows-sign](https://github.com/electron/windows-sign) and supports all its options (except for `appDirectory`, which is provided directly by this maker).\r\n- `updater`\r\n  - `url`: URL to the location of yml files.\r\n  - `updaterCacheDirName`: Name of the local cache. By default `${name}-updater`.\r\n  - `channel`: Name of the update channel. By default `latest`.\r\n  - `publisherName`: Used to verify the code signature. \r\n\r\n```ts\r\n// forge.config.js with minimal configuration\r\nmakers: [\r\n    {\r\n      name: \"@felixrieseberg/electron-forge-maker-nsis\",\r\n      config: {},\r\n    }\r\n  ]\r\n```\r\n\r\n```ts\r\n  // forge.config.js with example configuration\r\n  makers: [\r\n    {\r\n      name: \"@felixrieseberg/electron-forge-maker-nsis\",\r\n      config: {\r\n        codesigning: {\r\n          certificateFile?: string;\r\n          certificatePassword?: string;\r\n        },\r\n        updater: {\r\n\t\t\t\t\turl: \"https://s3-us-west-2.amazonaws.com/my-bucket\",\r\n\t\t\t\t\tupdaterCacheDirName: \"my-updater\",\r\n          channel: \"latest\",\r\n          publisherName: \"My Company, Inc.\"\r\n\t\t\t\t},\r\n        getAdditionalConfig: () =\u003e {\r\n          return {\r\n            artifactName: \"${productName} Setup ${version} ${arch}.${ext}\"\r\n          }\r\n        }\r\n      },\r\n    }\r\n  ]\r\n```\r\n\r\n## Updating\r\n\r\nThis tool supports [\"generic\" updates][https://www.electron.build/configuration/publish.html#publishers] with `electron-updater`. \r\n\r\n# License\r\nMIT. Please see LICENSE for details.\r\n\r\n[electron]: https://github.com/electron/electron\r\n[npm_img]: https://img.shields.io/npm/v/@felixrieseberg/electron-forge-maker-nsis.svg\r\n[npm_url]: https://npmjs.org/package/@felixrieseberg/electron-forge-maker-nsis\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixrieseberg%2Felectron-forge-maker-nsis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelixrieseberg%2Felectron-forge-maker-nsis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixrieseberg%2Felectron-forge-maker-nsis/lists"}