István Szmozsánszky
István Szmozsánszky
We should consider moving build logic out of the [module templates](https://github.com/suborbital/runnable-templates/tree/main/templates/javascript) and building them into the build toolchain or the runtime itself. At a high level this should consist of...
Using the #165 toolchain allows us to inject globals during compilation. This allows us to pollyfill JS/TS language features and APIs that are not available in the Javy runtime in...
The JS toolchain currently mangles line numbers, this makes it really hard to debug runtime errors as the line numbers don't match up with the original source. Storing metadata and...
The JS toolchain currently uses Webpack, we have experimented with using ESBuild which enables multiple future features and improves compilation speed.
The return value of JavaScript modules returning type `Number` values is ignored, the result becomes `""`: ```js export const run = (input) => { return 12345 }; // returns a...
I am on Linux (Ubuntu 23.04 on Wayland), I have a high-resolution laptop screen that I have "fractional scaling" enabled for and set to 150%. Unfortunately this makes GitFiend show...
The TodoMVC example is using lifecycle events to set up routing which was not updated to the post-0.4 syntax
Document the `config.json` format & settings.
It is rather hard to know what's the currently active session id with the current UI. The SID is not exposed anywhere and only served via a cookie. Enhancing the...
Initially, `avrgirl-arduino` had [quite a few timing-related issues](https://github.com/noopkat/avrgirl-arduino/issues/30) with the Arduboy, which resulted in the creation a [simplified script based on the original](https://github.com/flaki/clouduboy/blob/master/flasher/app/flash.js) to power Clouduboy's Flasher. @noopkat [since then...