dotnet-run
v2.0.0
Published
Run .NET programs easily on all platforms
Downloads
201
Readme
dotnet-run
Run .NET programs easily on all platforms
Install
npm install dotnet-run
Usage
JavaScript
const run = require("dotnet-run")
await run("hello.dll", ["javascript", "typescript"])
// => Hello, javascript and typescript!
const { getDotNetPath, installDotNet } = require("dotnet-run")
const dotnet = getDotNetPath()
if (!dotnet) {
await installDotNet()
}
Contributing
Please report an issue if you encounter a problem, or open a pull request if you make a patch.