node-inno-setup

6.2.0 • Public • Published

Inno Setup Exe

Repository for bundle Inno Setup to npm package.

Usage

  1. Install with npm install inno-setup-exe.
  2. Use const iscc = require('inno-setup-exe') on node to get the path of main Inno Setup compiler.

Example to run iscc command on node

const { spawnSync } = require('child_process')
const iscc = require('inno-setup-exe')

const outputPath = './output' // should not empty folder
const outputFilename = 'setup' // output as "setup.exe"
const issFile = './main.iss' // the .iss file

spawnSync(iscc, [
  `/O${outputPath}`,
  `/F${outputFilename}`,
  issFile
])

Package Sidebar

Install

npm i node-inno-setup

Weekly Downloads

0

Version

6.2.0

License

MIT

Unpacked Size

6.84 MB

Total Files

14

Last publish

Collaborators

  • nakorndev