I work at StackBlitz
Been doing Rust and Wasm for a while
Somewhat involved, pandemic permitting
@_rvidal jrvidal"Online IDE"
Web Workers
SharedArrayBuffer
ServiceWorkers
thread_local! {
static CWD: RefCell<Cwd> = RefCell::new(Cwd { path: PathBuf::from("/") });
static CONTROLLING_TTY: RefCell<Option<Dirent>> = RefCell::new(None);
}
use parking_lot::Mutex;
use once_cell::sync::Lazy;
static TTY_OUTPUT: Lazy<Mutex<TTYOutputMap>> = Lazy::new(Default::default);
use wasm_bindgen_futures::spawn_local;
pub fn create_tty(output_callback: js_sys::Function) -> Result<JsValue, JsValue> {
// ...
let output_listener = TTYOutputListener(output_callback);
spawn_local(async move {
output_receiver.receiver
.for_each(|data| {
output_listener.on_message(data);
async {}
})
.await
});
// ...
}
webcontainers.io β node.new β pr.new