you are viewing a single comment's thread
view the rest of the comments
[–] 69 points 3 years ago (3 children)

I'm choosing the third side: WebAssembly

  • source
  • hideshow 6 child comments
  • [–] 35 points 3 years ago (1 child)
  • [–] 4 points 3 years ago* (1 child)

    Incredibly powerful type system λλλ

    And the best part, those two interop better than in native code.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 3 years ago (1 child)

    those two interop better than in native code

    Really? Why is that?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago (1 child)

    The wasm ABI allows for a bit more flexibility than the C one.

    I'm not sure how much impact it has on practice (probably very little, otherwise somebody would have fixed it), but in native code there's a lot of potential for mismatching behaviors from the two different runtimes.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 6 points 3 years ago (1 child)

    Have they finally dumped the required js stub loader?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 10 points 3 years ago

    No, but GUI frameworks can generate it for you. Same goes for DOM access, for which there's normally only a JavaScript API.

    So, you'll likely want to read JS, when researching what events or properties you can read/write for certain HTML nodes in the DOM, but with a mature GUI framework, you should not need to write any JS.

  • source
  • parent