win-find-jscript-compiler
v1.0.0
Published
Find .NET's jsc.exe on Windows
Downloads
23
Readme
win-find-jscript-compiler
Find .NET's jsc.exe
on Windows. Noop on other platforms.
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