
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A lightweight AutoHotkey 64-bit toolchain for Windows.
This package bundles the official AutoHotkey runtime, compiler, and mpress packer so you can run or compile AHK scripts inside a Node.js build pipeline (e.g. from npm scripts, CI/CD jobs, or other automation).
.ahk scripts via the 64-bit AutoHotkey interpreter..ahk scripts into standalone .exe files using Ahk2Exe.npm/yarn/pnpm scripts—no separate installer needed.npm install --save-dev ahk64
Only Windows x64 is supported (
"os": ["win32"],"cpu": ["x64"]).
Example package.json:
{
"scripts": {
"run:ahk": "ahk64 run src/my-script.ahk",
"build:ahk": "ahk64 compile src/my-script.ahk /out dist/my-script.exe"
}
}
Run from the command line:
npm run run:ahk
npm run build:ahk
or directly with npx:
npx ahk64 compile src/my-script.ahk
ahk64 <command> [args...]
| Command | Underlying binary | Typical use |
|---|---|---|
run | AutoHotkey64.exe | Run a .ahk script. |
compile | Ahk2Exe.exe | Compile a .ahk script to .exe. Automatically sets /base to the included AutoHotkey64.exe. |
All remaining arguments are passed straight to the underlying tool.
Examples
# Compile with custom output path
npx ahk64 compile src/hotkeys.ahk /out dist/hotkeys.exe
# Run a script directly
npx ahk64 run src/hotkeys.ahk
# Compress an existing exe
npx ahk64 mpress dist/hotkeys.exe
The package ships these files inside bin/:
AutoHotkey64.exeAhk2Exe.exempress.exeThis npm package is distributed under the GPL-2.0 license. AutoHotkey binaries are redistributed under their respective licenses.
Repository: https://github.com/Nigh/AHK-npm
Tip: If you commit your
package-lock.jsonorpnpm-lock.yaml, your CI builds will always use the exact same AutoHotkey binaries for reproducible results.
FAQs
autohotkey64 binary
The npm package ahk64 receives a total of 1 weekly downloads. As such, ahk64 popularity was classified as not popular.
We found that ahk64 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.