Custom, interactive python code editor and executor in next.js
Unanswered
African Slender-snouted Crocodil… posted this in #help-forum
African Slender-snouted CrocodileOP
I'm building a project that requires a custom python code editor on the web. Basically repl.it minus fluff like autocompletion and what not. The IDE part is not concerning, i'll use monaco or something for that. What is concerning me is the execution part. I've considered using piston, but the problem is that it takes a single argument for STDIN rather than having a synchronous stream of input and output, which is what I want. Pretty much exactly how you would experience python ip/op on a local environment / terminal. Whats the simplest, quickest way for me to do this?