Or, put it another way, a html renderer that can open most web pages, but has a different programming/scripting language that it can interpret during runtime or on page loads, instead of the javascript engine.

I suppose that java applets, flash and activeX were attempts in these directions, but they were things you had to install on top of the browsers, so not quite the same thing? I’m imagining something like web pages using Lua, since it’s lightweight, to make them dynamic.

  • IWriteDaCode@programming.dev
    link
    fedilink
    English
    arrow-up
    10
    ·
    1 year ago

    Well, there is webassembly, this will enable static programming languages like c, c++, and rust. Rust is high enough level that it’s a pretty good sell for web apps. Even so, once webassembly calms down, we can build alternative interpreters that run on it, and run Python/Go/Java/etc. in the web. This will not be quite as efficent, but as c is about 50% slower in webassembly than on native hardware, I think a Go/Java would run well, Python might be a bit behind, but Lua is simple enough it might work.

    TLDR: You don’t have to kill JS to get those language functionalities, just wait for webassembly and all the cool stuff that comes about from that.

    Caveat: Though I’m a developer, I’m not a webassembly developer. I’ve heard of these things as theoretical possibilities, but don’t know the specific limitations. Sounds promising but who knows how long it will take to get there.

  • o11c@programming.dev
    link
    fedilink
    English
    arrow-up
    6
    ·
    1 year ago

    There’s no point in replacing JS with another dynamically-typed language. JS has received a lot of attempts at depessimization. If you’re going to replace it, it would have to be a language with real types (but reflection is still viable as a strictly-superior alternative to dynamic types)

    • nous@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      I would just replace it with a compile target - aka WASM. Then the web is not tied to one language but many can be built on top of it. WASM does need to more features then what is currently available to fully replace JS. DOM access for one, and probably a GC to reduce the amount of runtime you would need to ship (at least for languages that use a GC).

  • myusernameisokay@programming.dev
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    You could transpile different languages into JS. So you write in the language of your choice, transpile it to JS, then send the transpiled JS to the user’s browser. You could possibly do the same thing but use webasm as well.

  • agilob@programming.dev
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    Chrome had native support for Dart for a few years, there were some experiments with Ruby, and Coffee script transpiler

  • brian@programming.dev
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    If you want lightweight it’s probably better to stick with js or some language that compiles directly to wasm.

    That’s being said, there are libraries for running python/lua/ruby in a browser and interacting with the dom. I’ve only personally used python, which is great for running scientific computation things in browser since python has such an ecosystem for that type of thing. It is a pretty big addition to bundle size initially iirc, so I’m not sure how useful it is as a general purpose replacement for js.

    Python Lua Ruby