Open
Description
In the following snippet, the nodejs environment starts running a task that continues indefinitely:
env.Run(() =>
{
JSValue.RunScript(@"
setInterval(() => {
console.log('Hello from Node.js');
}, 1000);
");
});
Calling env.Dispose()
doesn't kill the environment but instead waits for completion (which never occurs).
Is it possible to forcefully "kill" the node environment?