1.0.21-3.17 • Published 8 years ago

csharp-runner v1.0.21-3.17

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

csharp-runner

Allow you to run c# code with nodejs

.Net Framework is required!

Example usage

const lib =require('csharp-runner');
const code =`
public class Bar
    {
        public object SayHello()
        {
            var x = new Zoo();
            return "Hi";
        }
    }
const helloWorld= `
namespace Foo
{
    ${code}
}`;

lib(helloWorld,'Foo.Bar','SayHello').then(data=>{
           console.log(data)
        })

Output will be 'Hi'

1.0.21-3.17

8 years ago

1.0.21-3.16

8 years ago

1.0.21-3.15

8 years ago

1.0.21-3.14

8 years ago

1.0.21-3.13

8 years ago

1.0.21-1.13

8 years ago

1.0.21-1.12

8 years ago

1.0.21-1.11

8 years ago

1.0.21-1.1

8 years ago

1.0.211

8 years ago

1.0.21

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago