1.0.0 • Published 9 years ago

edge-vb v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
9 years ago

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.

1.0.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago