• AgreeableLandscape@lemmy.ml
    link
    fedilink
    arrow-up
    4
    ·
    3 years ago

    A mark against this compared to Invidious is that this needs JS to even render while Invidious can even play videos without it.

  • esi@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    3 years ago

    Interesting. What’s the core difference between this and Invidious?

    • dandelion@lemmy.ml
      link
      fedilink
      arrow-up
      7
      ·
      edit-2
      3 years ago

      Invidious is written mostly with the Crystal programming language which is not such a common language, and the project has been around for years. Piped appears to use Java, and JavaScript (Vue) and the project looks pretty new.

      • Jama@lemmy.ml
        link
        fedilink
        arrow-up
        7
        arrow-down
        1
        ·
        3 years ago

        Hmm… I don’t really like having to use JavaScript, invidious usually permit to use the service without JavaScript. I think this could be a security risk, since there will be various istances and you can’t really know if those istances are safe or not

          • AgreeableLandscape@lemmy.ml
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            3 years ago

            Nuxt.js exists to pre-render Vue, allowing whatever static content is on the site to be displayed without enabling client side JS. It can either do this with SSR or at compile time. The latter is what I’m currently doing to make a Vue-based site work without JS enabled.