edge-vb

1.0.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i edge-vb

Weekly Downloads

1

Version

1.0.0

License

none

Last publish

Collaborators

  • jabark