Anyone have experience using Nim? The TLDR that I am seeing is compiled portable python/js replacement in a way.

I was thinking about trying to write a webserver with it and was wondering if anyone had any previous experience with it.

  • FriendOfFalcons@kbin.social
    link
    fedilink
    arrow-up
    6
    arrow-down
    2
    ·
    11 months ago

    I like Nim and many concepts of it with the big point of discussion being that function names get normalized (helloWorld === hello_world).

    But I feel like that Nim is a language without purpose. It’s all nice and cool on paper, but it has no use case where I think “I have to do it in Nim”.

    Go is known for making small, fast startup web apps, Python for making small one time tasks or Data work, Rust low level programming if you like functional programming, PHP if you want yo setup a website as fast as possible.

    But Nim doesn’t have this, it doesn’t have a library that’s better than in all other languages. It’s nice but what for?

    • float@feddit.de
      link
      fedilink
      arrow-up
      5
      ·
      11 months ago

      I have to disagree with your “when use what” list. Python has production ready web backend frameworks, Rust is perfectly fine for complex and high-level software, and PHP is mostly obsolete. That’s my humble opinion though. I looked into Nim and like many of the concepts. It’s quite complex and I prefer Rust most of the time when Nim would be an option. I’d argue it’s some kind of “jack of all trades”. A bit like python but compiled, ref-counted, and probably a lot faster. It’s lacking the huge community python has though.

      • FriendOfFalcons@kbin.social
        link
        fedilink
        arrow-up
        3
        arrow-down
        1
        ·
        11 months ago

        It’s lacking the huge community python has though.

        And where did Rust, Python etc get their huge community from in the first place? From being jack of all trades? No, because they were the best fit for their use case. After they established themselves there, they became widely good.

        • float@feddit.de
          link
          fedilink
          arrow-up
          3
          ·
          11 months ago

          tl;dr Language evolution and future outlook are big factors besides the existing language features themselves.

          I guess Rust has attracted many C++ devs because C++ is painful and there were no other/better options. Rust comes with a build/dependency management system and memory safety guarantees on top of the type safety. Even though C++ templates are still unmatched, I prefer Rust 95% of the time. C++ is evolving very slow and it’s extremely hard to participate. Rust will win that race eventually.

          Python has been around since 1991(!) and it took a looong time to build the community. It was a niche like Nim is now for many years.

          I’ll definitely keep an eye on Nim because it has the potential to become quite popular.

          Again, that’s all just my opinion.