try compiling nim to wasm and let us know how far you get
> browser-based IDE for Nim
Just wondering, if it's possible to create interactive browser documents? Like
[ObservableHQ](https://observablehq.com/@observablehq/javascript-and-observable).
I mean, pure browser, code Nim in browser, without any involvement of the
server, the compilation and eval
not yet, I intend to when I find time though
Do you have this POC hosted somewhere?
I've developed a similar tool to implement a CAAS (compiler as a service) to
implement a REPL (unlike inim, it doesn't recompile everything on each cmd;
unlike nim secret, it can use c backend), it uses a client server architecture
with a cmdline frontend for the REPL that talks to a backend in
2 ideas, flushing and sending line endings (`'\l'` in nim) are you using
readline?
Hey guys,
I'm working on a browser-based IDE for Nim that uses either `nim secret` or
`inim` as the REPL. What I'd like to do is send scripts to the REPL's stdin and
receive responses via its stdout for printing it out in the browser.
I've tried building a quick demo with a few different exampl