1.0.7 • Published 8 years ago
code-runner v1.0.7
Code-runner 
Its an online programming ide for the compilation of simple programs, Mostly used in competitive programming servers to run the code according to certain set of rules.
usage
var runner = require('code-runner');
runner(code,options,function(){
//callback function
...
});codeis the code to be executed.optionsis an object which should contain the following properties :timeout: time in ms, specifies the time after which the program must be terminated.language: the name of the language of the given code.