ReplitClient.js
ReplitClient.js copied to clipboard
A JavaScript client library used to connect to the server-side code execution service
let XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
I have some code that looks like this: repl.evaluate( '#include \n int main() { printf("hello world"); int n = 0; scanf("%d", &n); printf("hello world"); return 0; }', { stdout: function(str)...
I followed the documentation and to create a Replit object i need to pass a token. And for the token there are two attributes time_created and mag_mac. What should i...