Help for Sending Input Data To REPL

2021-07-02 Thread timothee
try compiling nim to wasm and let us know how far you get

Help for Sending Input Data To REPL

2021-07-02 Thread alexeypetrushin
> 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

Help for Sending Input Data To REPL

2021-07-02 Thread timothee
not yet, I intend to when I find time though

Help for Sending Input Data To REPL

2021-07-01 Thread ynfle
Do you have this POC hosted somewhere?

Help for Sending Input Data To REPL

2021-07-01 Thread timothee
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

Help for Sending Input Data To REPL

2021-07-01 Thread ynfle
2 ideas, flushing and sending line endings (`'\l'` in nim) are you using readline?

Help for Sending Input Data To REPL

2021-07-01 Thread Niminem
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