Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 474 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 474 Bytes

edge-scs

What is it

edge-scs is an extension for edge that allows invoking scriptcs from node.js.

Hello edge-scs

Below is a simple snippet of using scriptcs from edge

var edge = require('edge');
var hello = edge.func('scs', function() {/*
static object Invoke(string s) {
    return s;
}
*/});
hello("Hello from scriptcs", function(error,result) {
    if (error) throw error;
    console.log(result);
});