
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@reforged/plugin-launcher
Advanced tools
(WIP) Provide an executable wrapper for your Electron software.
@reforged/plugin-launcherAn Electron Forge plugin to wrap Electron applications into shebang-prefixed script files and native OS executables. At the current state, application developers are responsible for resolving path to your Electron application and handling script real path when it is being symlinked. Plugin also only deals with Linux only for the time being.
[!CAUTION] We are currently at initial release cycle, therefore no API stability guarantees are made! Far more code infrastructure needs implementation as well, including but not exclusively: unit tests, documentation, use case consideration, multiplatform and multiarch packaging support, logging and planned feature definition.
Mature stable release will begin at v1 versioning, as defined by SemVer specification.
Currently, plugin configuration supports one property that must be set:
launcher. It is a multi-type property and can be:
string, pointing to a file that will replace the binary when starting
application,string or string[] (where array contains individual
lines), to provide an inline script that will be used as an entrypoint of
your application,ArrayBufferView (e.g. Uint8Array, Buffer instances), that represents
an embedded version of your binary.Example relevant Electron Forge configuration:
/// forge.config.mjs
import PluginLauncher from "@reforged/plugin-launcher"
const config = {
/* (…) */
plugins: [
/* Note: PluginLauncher has to be the last element! */
new PluginLauncher({ launcher: [
'#!/bin/sh',
'ME="$(readlink -f "$0")"',
'echo "Hello, plugin world!"',
'exec "$ME.bin" "$@"'
]})
]
}
FAQs
(WIP) Provide an executable wrapper for your Electron software.
We found that @reforged/plugin-launcher demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.