compileon

1.1.0 • Public • Published

compileon

GitHub license GitHub issues npm version

Makes building online compilers easy.

compileon is a library written in node that helps you build online compilers and editors with ease.

Install

The package can be installed with node.js npm package manager. If you don't have node.js installed you can download it here

$ npm install -g compileon

Note: The -g flag might require sudo permisson.

Usage

First install the compilers required.

  1. For Java, install the JAVA SDK .
Without Input:
    //if windows  
    var envData = { OS : "windows"}; 
    //else
    var envData = { OS : "linux" };
    compiler.javaCompile( envData , code , function(data){
        res.send(data);
    });    

Note: As compiling is same for Java in either of the OS can select either of the OS while using it.

With Input:
    //if windows  
    var envData = { OS : "windows"}; 
    //else
    var envData = { OS : "linux" };
    compiler.compileWithInput( envData , code , input ,  function(data){
        res.send(data);
    });
  1. For python, install python.
Without Input:
    //if windows  
    var envData = { OS : "windows"}; 
    //else
    var envData = { OS : "linux" };
    compiler.executePython( envData , code , function(data){
        res.send(data);
    });    

Note: As compiling is same for Python in either of the OS can select either of the OS while using it.

With Input:
    //if windows  
    var envData = { OS : "windows"}; 
    //else
    var envData = { OS : "linux" };
    compiler.executeWithInput( envData , code , input ,  function(data){
        res.send(data);
    });
  1. For CPP and C, install g++ or gcc .
Without Input:
    //if windows 
    var envData = { OS : "windows", cmd: "gcc" or "g++"}; 
    //else
    var envData = { OS : "linux", cmd: "gcc" or "g++"};
    compiler.cppCompile( envData , code , function(data){
        res.send(data);
    });    

Note: Can choose either gcc or g++.

With Input:
    //if windows  
    var envData = { OS : "windows", cmd: "gcc" or "g++"}; 
    //else
    var envData = { OS : "linux", cmd: "gcc" or "g++"};
    compiler.cppcompileWithInput( envData , code , input ,  function(data){
        res.send(data);
    });

Further Updates

  1. Have to add compilers for other languages - Golang.
  2. Have to add Example.

Contributing

  • Fork it and then do the changes or else download the zip file, test to make sure nothing is going sideways.
  • Make a pull request with a detailed explanation.

License

MIT

Package Sidebar

Install

npm i compileon

Weekly Downloads

2

Version

1.1.0

License

MIT

Unpacked Size

22.5 kB

Total Files

7

Last publish

Collaborators

  • itsknk