New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-inno-setup

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-inno-setup

Repository for bundle Inno Setup to npm package

latest
Source
npmnpm
Version
6.2.0
Version published
Maintainers
1
Created
Source

Inno Setup Exe

Repository for bundle Inno Setup to npm package.

Usage

  • Install with npm install inno-setup-exe.
  • 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
])

Keywords

inno

FAQs

Package last updated on 22 Jul 2021

Did you know?

Socket

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.

Install

Related posts