Node module to edit resources of exe
npm install rcedit

Node module to edit resources of Windows executables.
On platforms other than Windows, you will need to have Wine
1.6 or later installed and in the system path.
> [!NOTE]
> Under the hood, this package relies on the electron/rcedit
> binary to perform operations. A vendored executable is in the /bin/ folder of the source code.
> The latest version of this package uses rcedit@2.0.0.
``javascript`
import { rcedit } from 'rcedit'
exePath is the path to the Windows executable to be modified.
options is an object that can contain following fields:
* version-string - An object containing properties to change the exePath'sfile-version
version string.
* - File's version to change to.product-version
* - Product's version to change to.icon
* - Path to the icon file (.ico) to set as the exePath's default icon.requested-execution-level
* - Requested execution level to change to, must beasInvoker
either , highestAvailable, or requireAdministrator. Seeapplication-manifest
requestedExecutionLevel for
more details.
* - String path to a local manifest file to use.resource-string
See Application manifest
for more details.
* - An object in the form of { [id]: value } to add to the
string table.
Returns a Promise with no value.
* Clone the repository
* Run yarn installyarn test` to run the tests
* Run