ahktoexe
v1.3.0
Published
A system to convert Ahk file to Exe.
Downloads
5
Readme
Ahktoexe
An NPM for ahk file into exe converter.
Installation
Use npm to install ahktoexe
npm i ahktoexe
Usage
const ahkexe = require('ahktoexe');
var fileToConvert = 'C:\\ Path to file you want to convert \\example.txt';
var finalPath = 'C:\\ Path to paste the converted file \\example.exe';
(async function() {
await ahkexe(fileToConvert, finalPath);
console.log("Generated at: " + finalPath);
})()
Credits
AutoHotkey : https://www.autohotkey.com/ Ahk2Exe : https://github.com/AutoHotkey/Ahk2Exe