0.1.0 • Published 7 years ago

win-ver v0.1.0

Weekly downloads
5
License
WTFPL
Repository
github
Last release
7 years ago

win-ver

Get the Windows version as returned by ver.

Installation

npm install win-ver

Quickstart

const ver = require('win-ver')

ver()
  .then(console.log) // => '10.0.15063'
  .catch(console.error)

API

  • Returns a Promise which either
    • resolves with the semver version string
    • or rejects with EWIN32ONLY (if process.platform is not win32),
    • or rejects with any error that occured while executing ver.

License

WTFPL – Do What the F*ck You Want to Public License.

Made with :heart: by @MarkTiedemann.