Skip to content

Commit 455e864

Browse files
Initial commit.
0 parents  commit 455e864

File tree

4 files changed

+129
-0
lines changed

4 files changed

+129
-0
lines changed

README.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Code Execution
2+
Code Execution plugin for [TypingMind](https://typingmind.com) powered by [Judge0](https://judge0.com).
3+
4+
## Get Started
5+
1. Get your code execution API key [here](https://judge0.com/ce).
6+
2. Click the *Settings* tab and enter your RapidAPI Key.
7+
8+
## Supported Languages
9+
C, C++, Go, Python, Java, JavaScript, Ruby.
10+
11+
## Example Usage
12+
```
13+
Run the following Python code:
14+
def fibonacci(n):
15+
if n <= 1:
16+
return n
17+
else:
18+
return fibonacci(n-1) + fibonacci(n-2)
19+
print(fibonacci(10))
20+
```
21+
22+
---
23+
24+
```
25+
Run this C++ code:
26+
#include <iostream>
27+
28+
int main() {
29+
std::cout << "Hello from TypingMind!\n";
30+
return 0;
31+
}
32+
```
33+
34+
## Contribute
35+
Your contributions are welcome via [GitHub](https://github.com/judge0/typingmind).

plugin.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
const LANGUAGE_IDS = { // https://ce.judge0.com/languages
2+
"c": 50,
3+
"cpp": 54,
4+
"go": 95,
5+
"java": 91,
6+
"javascript": 93,
7+
"python": 92,
8+
"ruby": 72
9+
};
10+
11+
const LANGUAGE_ALIASES = {
12+
"c++": "cpp",
13+
"golang": "go",
14+
"js": "javascript"
15+
}
16+
17+
function getLanguageId(language) {
18+
let l = language.toLowerCase();
19+
return LANGUAGE_IDS[LANGUAGE_ALIASES[l] || l] || 0;
20+
}
21+
22+
function encode(str) {
23+
return btoa(unescape(encodeURIComponent(str || "")));
24+
}
25+
26+
function decode(bytes) {
27+
var escaped = escape(atob(bytes || ""));
28+
try {
29+
return decodeURIComponent(escaped);
30+
} catch {
31+
return unescape(escaped);
32+
}
33+
}
34+
35+
async function code_execution(params, userSettings) {
36+
const { source_code, language } = params;
37+
const { rapidApiKey } = userSettings;
38+
39+
const languageId = getLanguageId(language);
40+
if (languageId == 0) {
41+
return `Unsupported language ${language}`;
42+
}
43+
44+
const requestHeaders = new Headers();
45+
requestHeaders.append("x-rapidapi-key", rapidApiKey);
46+
requestHeaders.append("Content-Type", "application/json");
47+
48+
const requestData = {
49+
"language_id": languageId,
50+
"source_code": encode(source_code),
51+
"redirect_stderr_to_stdout": true
52+
};
53+
54+
let response = await fetch("https://judge0-ce.p.rapidapi.com/submissions?base64_encoded=true&wait=true", {
55+
method: "POST",
56+
headers: requestHeaders,
57+
body: JSON.stringify(requestData)
58+
});
59+
60+
if (!response.ok) {
61+
return "Network error";
62+
}
63+
64+
let responseData = await response.json();
65+
return [decode(responseData["compile_output"]), decode(responseData["stdout"])].join("\n").trim();
66+
}

settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"name": "rapidApiKey",
4+
"label": "RapidAPI Key",
5+
"type": "password"
6+
}
7+
]

spec.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "code_execution",
3+
"description": "Run code in various programming languages",
4+
"parameters": {
5+
"type": "object",
6+
"properties": {
7+
"source_code": {
8+
"type": "string",
9+
"description": "A source code snippet"
10+
},
11+
"language": {
12+
"type": "string",
13+
"description": "A name of the programming language"
14+
}
15+
},
16+
"required": [
17+
"source_code",
18+
"language"
19+
]
20+
}
21+
}

0 commit comments

Comments
 (0)