edge-vb

Edge-vb: run VB and node.js code in-process with edge.js


License
Apache-2.0
Install
npm install edge-vb@1.0.0

Documentation

edge-vb

This is a VB compiler for edge.js.

This is an attempt to clone the C# version and convert to VB. My current lack of understanding means this might not work as expected.

Please fork on GitHub if you think you can help improve this project.

Example "Hello World" code:

var WriteCrapVB = edge.func('vb', function () {/*
    Async Function(Input As Object) As Task(Of Object)
        Return Await Task.Run(Function()
            Return "NodeJS Welcomes: " & Input.ToString()
        End Function)
    End Function
*/});
WriteCrapVB('VB', function (error, result) {
    if (error) throw error;
    console.log(result); // Returns "NodeJS Welcomes: VB"
});

See edge.js overview and edge.js on GitHub for more information.