Skip to content
/ edge-vb Public

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

License

Notifications You must be signed in to change notification settings

Jabark/edge-vb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

edge-vb

This is a VB compiler for edge.js.

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published