Niels Widger
Niels Widger
@mostafa I just played around with the demo in the `goja_debugger` repo and it works quite nicely! The only basic functionality that I think might be missing would be something...
@mostafa Nice ! It looks like you're close to being able to rip the CLI frontend code out into a separate repo, if that's what you're eventually shooting for. I...
It's been really fun watching you and @MStoykov poking away at this. It looks great, I just noticed a few small things that I wasn't sure about: - Does it...
@mostafa No problem! I just noticed one minor issue, if you don't include the `inspect` command to `goja_debugger`, you get a panic: ``` $ ./goja_debugger test.js panic: runtime error: invalid...
@mostafa I think on-the-fly sourcemap generation might be possible with [esbuild](https://esbuild.github.io/)'s Transform API: ```go package main import ( "fmt" "github.com/evanw/esbuild/pkg/api" ) func main() { result := api.Transform("var x = 1",...
My contributions have mainly been in the goja_nodejs repository, but I'm definitely interested in goja development as well! I would also be interested in support for Promises + async/await syntax....
@MStoykov Ah okay, I guess I was mistaken and assumed that `import` works similarly in ES6 as it does in TypeScript. All I know is that the TypeScript compiler by...
@jonny7 Unfortunately all the work I did for that was for work, none of which is open-source. At one point I did see a project on GitLab that was called...
@chenxun450 Yes, nintengo doesn't support Go 1.14 for WASM. The API for the `syscall/js` package has changed since I initially added WASM support to nintengo and I haven't had the...
I'm interested in this as well. Any updates?