jcaesar

Results 68 comments of jcaesar

> Let's start with discussion: what is the purpose of running Java in WASI? Why not just running JVM? Haven't we [already talked about this](https://github.com/konsoletyper/teavm/issues/568#issuecomment-921417931)? My reasons are: * Ecosystem:...

> Thoughts? How big is WasmerJS's WASI? From what I see, the average TeaVM module doesn't need much more than `fd_write(2, …)` for logging error messages. Maybe 1kB in JS?...

This should be covered? ```js module.exports = { plugins: [ new WasmPackPlugin({ watchDirectories: [ path.resolve(__dirname, "core/src") ], }), ], } ```

> currently the decoder strictly follows the URL spec Hm, I'll rephrase it like that. But I do wonder whether it's accurate, or at least helpful. On the one hand...

I don't see how #843 documents what limitations the limitations of query parameter deserialization. I wouldn't consider this addressed. But I do feel like I'm being pedantic. In the off-case...

I've rebased on master and reworded it so the documentation doesn't leak any implementation details.

Ah, if you're asking, I should probably spell it out. `Parameters`. But I'll change it to `FooQuery` to match the other example.

Two jumbled things here: * You're trying to bump the wasmer version, not the wasi version. There's [a PR](https://github.com/wasmerio/wasmer-java/pull/60) for that. * wasmer-java [doesn't](https://github.com/wasmerio/wasmer-java/blob/b5c7887ad745ce04f909e64ce8cffea04e2fff9e/src/instance.rs#L26) support imports at all. There's [an...

I had a bit of a go at implementing: https://github.com/jcaesar/wasmer-java/compare/wasmer-2...jcaesar:imports?expand=1 I can't test it because gradle, so I don't expect it to work as is. In all honesty, wasmer-java needs...