lleval

0.1.2 • Public • Published

#lleval

It is evaluate some program language on Node.js. lleval APIs wrapper for Node.js.

##Install

$ npm install lleval -g

##Example

Evaluate JavaScript on Node.js.

var
lleval = require('lleval');

lleval.evaluate('js', 'print("Hello");', function(err, data) {
  if(err) {
    console.log('request error');
    return;
  }
  
  console.log(data);
});

Evaluate Ruby2.0.

var
lleval = require('lleval');

lleval.evaluate('rb20', 'puts "Hello"', function(err, data) {
  if(err) {
    console.log('request error');
    return;
  }
  
  console.log(data);
});

And more.

##Command Line Interface

Please do,

$ node-lleval -h

##Supported Language

See also, lleval.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.2
    1
  • 0.1.1
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i lleval

Weekly Downloads

1

Version

0.1.2

License

BSD

Last publish

Collaborators

  • alucky0707