node-inno-setup

Repository for bundle Inno Setup to npm package


Keywords
inno, inno setup, inno setup compiler, iscc, setup, installer, wizard
License
MIT
Install
npm install node-inno-setup@6.2.0

Documentation

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
])