webr
webr copied to clipboard
The statistical language R compiled to WebAssembly via Emscripten, for use in web browsers and Node.
To support long reliable running R sessions on the server, it could be useful to add tooling that can limit memory usage and cpu time to prevent R sessions from...
(not sure if that's the right repo - feel free to transfer where appropriate) Something similar to what we have for shinylive when the code compressed and added to the...
The Courier font in the REPL is too thin, resulting in poor readability. Could it be changed into one of modern fonts (e.g. Fira, Cascadia, Intel One, Ubuntu Mono, Julia...
Recently trying out self-hosting webR on local server on mobile device (iOS iPad). Downloaded releases version of webR and hosting on iOS iPad local server app by then opening webr-0.4.0...
I tried using `evalRString()` in the hopes that it would return the results as a string. However, it _expects_ a string and will error if a string is not returned...
Hi there! One of the best uses that I can see for webR is for using it on mobile devices or tablets, recently I was running a script, on your...
`spidyr` currently supports doing the following: ```javascript const tools = await library("tools"); const res = await tools.toTitleCase(["hello from r"]); ``` Or more elegantly, imho : ```javascript const { toTitleCase }...
Adds recipe for building oneTBB following their [instructions for WASM](https://github.com/oneapi-src/oneTBB/blob/master/WASM_Support.md). Let me know if I've missed anything, thanks!
Improvements to R's bytecode interpreter (TCO, more efficient use of stack space - thanks Luke!) mean it's now feasible to run it under Wasm by default. The R Wasm binary...
I'd like to use litedown with webR but running `webr::install("litedown")` and `webr::install("yihui/litedown")` both fail saying the package cannot be found. Any tips here? I suspect the best thing i can...