Skip to content

scriptcs-contrib/edge-scs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});