项目作者: vweevers

项目描述 :
Windows-only native addon to read version info from executables.
高级语言: C++
项目地址: git://github.com/vweevers/win-version-info.git
创建时间: 2016-03-27T14:10:56Z
项目社区:https://github.com/vweevers/win-version-info

开源协议:MIT License

下载


win-version-info

Windows-only native addon to read version info from executables. A noop on other platforms.

npm status
Node version
Test
Standard
Common Changelog

Example

  1. const vi = require('win-version-info')
  2. console.log(vi(process.argv[2]))
  1. > node example "C:\Program Files (x86)\Firefox Developer Edition\firefox.exe"
  2. { FileVersion: '46.0.0.5903',
  3. LegalCopyright: '©Firefox and Mozilla Developers; available under the MPL 2 license.',
  4. CompanyName: 'Mozilla Corporation',
  5. FileDescription: 'FirefoxDeveloperEdition',
  6. ProductVersion: '46.0a2',
  7. InternalName: 'FirefoxDeveloperEdition',
  8. LegalTrademarks: 'Firefox is a Trademark of The Mozilla Foundation.',
  9. OriginalFilename: 'firefox.exe',
  10. ProductName: 'FirefoxDeveloperEdition',
  11. BuildID: '20160229004006' }

Install

With npm do:

  1. npm install win-version-info

License

MIT. The main body of this project comes from ShowVer © Ted Peck 2002. Converting between UTF-16 and UTF-8 made possible by UTF8Conversion (Apache License 2.0) © 2011 Giovanni Dicanio.