0.0.1 • Published 6 years ago

win-dummy-exe v0.0.1

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

win-dummy-exe

Generate a dummy Windows executable with .NET. Meant for testing.

npm status node AppVeyor build status Dependency status JavaScript Style Guide

usage

const dummy = require('win-dummy-exe')

const metadata = {
  assemblyFileVersion: '1.0.0',
  assemblyInformationalVersion: '1.0.0.1',
  assemblyCopyright: 'me me me'
}

dummy(metadata, function (err, exe) {
  if (err) throw err

  // exe is an absolute path to a dummy.exe in a temporary directory
})

install

With npm do:

npm install win-dummy-exe

license

MIT © Vincent Weevers