1.0.0 • Published 6 years ago

win-find-jscript-compiler v1.0.0

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

win-find-jscript-compiler

Find .NET's jsc.exe on Windows. Noop on other platforms.

npm status node AppVeyor build status Dependency status JavaScript Style Guide

usage

const jsc = require('win-find-jscript-compiler')

jsc(function (err, results) {
  if (err) throw err

  console.log(results)
})

Output (latest version and x64 sorts last):

[ { dotnet: '2.0.50727',
    path: 'C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/jsc.exe',
    cpu: 'x86' },
  { dotnet: '2.0.50727',
    path: 'C:/WINDOWS/Microsoft.NET/Framework64/v2.0.50727/jsc.exe',
    cpu: 'x64' },
  { dotnet: '4.0.30319',
    path: 'C:/WINDOWS/Microsoft.NET/Framework/v4.0.30319/jsc.exe',
    cpu: 'x86' },
  { dotnet: '4.0.30319',
    path: 'C:/WINDOWS/Microsoft.NET/Framework64/v4.0.30319/jsc.exe',
    cpu: 'x64' } ]

install

With npm do:

npm install win-find-jscript-compiler

license

MIT © Vincent Weevers