roll-your-own-javascript-runtime
roll-your-own-javascript-runtime copied to clipboard
Hello. I had so much fun following this tutorial. I implemented setTimeout using the answer to my question here https://github.com/denoland/deno/discussions/19231 ```rust #[op] async fn op_set_timeout(delay: u64) -> Result { tokio::time::sleep(tokio::time::Duration::from_millis(delay)).await;...
- Does this example support importing other files (or packages from an url)? - How can I access functions/objects, that are exported by the script?
The blog post contains an incomplete code for registering an extension in the first part of the [Roll your own JavaScript runtime](https://deno.com/blog/roll-your-own-javascript-runtime) series. It is missing the part where the...