-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
111 lines (104 loc) · 2.82 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
const express = require("express");
const cors = require("cors");
const bodyParser = require("body-parser");
const compiler = require("compilex");
const path = require("path");
const app = express();
const options = { stats: true };
compiler.init(options);
app.use(cors());
app.use(bodyParser.json());
// Serve static files dynamically using path module
app.use(
"/codemirror-5.65.16",
express.static(path.resolve(__dirname, "codemirror-5.65.16"))
);
// Serve the main HTML file dynamically
app.get("/", function (req, res) {
compiler.flush(function () {
// Callback logic if needed
});
res.sendFile(path.resolve(__dirname, "index.html"));
});
app.post("/compile", function (req, res) {
var code = req.body.code;
var input = req.body.input;
var lang = req.body.lang;
try {
if (lang == "C++") {
if (!input) {
var envData = {
OS: "windows",
cmd: "g++",
options: { timeout: 10000 },
};
compiler.compileCPP(envData, code, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
} else {
var envData = {
OS: "windows",
cmd: "g++",
options: { timeout: 10000 },
};
compiler.compileCPPWithInput(envData, code, input, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
}
} else if (lang == "Java") {
if (!input) {
var envData = { OS: "windows" };
compiler.compileJava(envData, code, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
} else {
var envData = { OS: "windows" };
compiler.compileJavaWithInput(envData, code, input, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
}
} else if (lang == "Python") {
if (!input) {
var envData = { OS: "windows" };
compiler.compilePython(envData, code, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
} else {
var envData = { OS: "windows" };
compiler.compilePythonWithInput(envData, code, input, function (data) {
if (data.output) {
res.send(data);
} else {
res.send({ output: "error" });
}
});
}
}
} catch (e) {
console.log("error");
}
});
const PORT = process.env.PORT || 8000;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});