
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Makes building online compilers easy.
compileon is a library written in node that helps you build online compilers and editors with ease.
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.
First install the compilers required.
//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.
//if windows
var envData = { OS : "windows"};
//else
var envData = { OS : "linux" };
compiler.compileWithInput( envData , code , input , function(data){
res.send(data);
});
//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.
//if windows
var envData = { OS : "windows"};
//else
var envData = { OS : "linux" };
compiler.executeWithInput( envData , code , input , function(data){
res.send(data);
});
//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++.
//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);
});
FAQs
Makes building online compilers easy
The npm package compileon receives a total of 2 weekly downloads. As such, compileon popularity was classified as not popular.
We found that compileon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.