hyperview VS Alpine.js

Compare hyperview vs Alpine.js and see what are their differences.

hyperview

Server-driven mobile apps with React Native (by Instawork)

Alpine.js

A rugged, minimal framework for composing JavaScript behavior in your markup. (by alpinejs)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
hyperview Alpine.js
22 242
1,062 26,798
4.4% 1.8%
9.1 9.3
17 days ago 6 days ago
TypeScript HTML
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

hyperview

Posts with mentions or reviews of hyperview. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-22.
  • Form to DB
    6 projects | news.ycombinator.com | 22 Feb 2024
  • Show HN: Htmx Playground
    2 projects | news.ycombinator.com | 13 Jan 2024
  • Is Htmx Just Another JavaScript Framework?
    9 projects | news.ycombinator.com | 11 Jan 2024
    Is english your first language? I feel like many of your objections, insofar as I can make sense of them, fall into language & semantic debates.

    The term HDA, which I coined and, therefore, feel like I have some ability to define, was created to contrast with the familiar SPA/Single Page Application acronym, which is a term used in web development. This is why I focus on the web with that article.

    As I have repeated incessantly with you, I included HXML, a mobile hypermedia from the https://hyperview.org project, in my book on hypermedia systems, and I hope this indicates to a fair minded 3rd person (I have given up on you acknowledging my plain language here) that I do not believe that HTML is the only hypermedia in the world.

  • Ask HN: Is React Native still popular?
    2 projects | news.ycombinator.com | 2 Dec 2023
    I've really enjoyed using Hyperview (https://hyperview.org/) recently, which uses React Native as a base. I used to think PWA/Ionic/Capacitor apps were better, but have really fallen in love with the simplicity of Hyperview and tools like HTMX.
  • Strada Released
    4 projects | news.ycombinator.com | 20 Sep 2023
  • Htmx is part of the GitHub Accelerator
    12 projects | news.ycombinator.com | 16 Aug 2023
    there already is!

    https://hyperview.org/

    Adam Stepinski, the creator of Hypreview, built it after his experience with intercooler.js, the predecessor to htmx. It is a very interesting piece of technology and, through the magic of HATEOAS, allows you to update your mobile app instantly for all your users, without dealing with the mobile store!

    There is an entire section on Hyperview, written by Adam, in part three of our book:

    https://hypermedia.systems/book/contents/

  • htmx/Go experiences?
    4 projects | /r/golang | 8 Jul 2023
  • Any books that cover the current state of webdev?
    3 projects | /r/learnprogramming | 27 Jun 2023
    it's about hypermedia, https://htmx.org/, and https://hyperview.org/ , which have a focus on removing complexity
  • Chris James -HTMX is the Future
    1 project | /r/javascript | 8 May 2023
    [1] There is Hyperview but it's super new.
  • Htmx Is the Future
    9 projects | news.ycombinator.com | 5 May 2023
    i am the creator of htmx, this is a great article that touches on a lot of the advantages of the hypermedia approach (two big ones: simplicity & it eliminates the two-codebase problem, which puts pressure on teams to adopt js on the backend even if it isn't the best server side option)

    hypermedia isn't ideal for everything[1], but it is an interesting & useful technology and libraries like htmx make it much more relevant for modern development

    we have a free book on practical hypermedia (a review of concepts, old web 1.0 style apps, modernized htmx-based apps, and mobile hypermedia based on hyperview[2]) available here:

    https://hypermedia.systems

    [1] - https://htmx.org/essays/when-to-use-hypermedia/

    [2] - https://hyperview.org/

Alpine.js

Posts with mentions or reviews of Alpine.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-09.
  • Biometric authentication with Passkeys
    3 projects | dev.to | 9 Mar 2024
    Alpine.js for reactive frontend
  • 🤓 My top 3 Go packages that I wish I'd known about earlier
    6 projects | dev.to | 1 Mar 2024
    ✨ In recent months, I have been developing web projects using GOTTHA stack: Go + Templ + Tailwind CSS + htmx + Alpine.js. As soon as I'm ready to talk about all the subtleties and pitfalls, I'll post it on my social networks.
  • Htmx Is Composable?
    3 projects | news.ycombinator.com | 17 Jan 2024
    > But honestly, torn towards htmx but undecided.

    We are in the middle of migrating from our monster react application into server rendered pages (with jinja2). The velocity at which we are able to ship and the reduction of complexity has been great so far.

    Managing client side state for simple things like (is the dropdown open/closed), listening to keyboard events and such can be done with something like alpine-js [1] without all the baggage that something like react brings.

    It appears this is already the trend with JS frameworks too - with server side rendering being the new norm.

    [1] https://alpinejs.dev/

  • Pocketbase: Open-source back end in 1 file
    15 projects | news.ycombinator.com | 6 Jan 2024
  • Coming to grips with JS: a Rubyist's deep dive
    16 projects | dev.to | 29 Dec 2023
    Sure, you can use any number of JS-avoidance libraries. I'm a fan of Turbo, and there's also htmx, Unpoly, Alpine, hyperscript, swup, barba.js, and probably others.
  • What is your opinion about developers who do direct DOM manipulations instead of using modern web frameworks (like React, Vue, Angular) to achieve maximum performance?
    1 project | /r/webdev | 6 Dec 2023
    Direct DOM, but with a library. Specifically AlpineJS since it follows Vue closely in design practices allowing me to scale into a full web application if necessary (basically swapping to Vue takes minimal work). The Morph plugin is specifically what I like using.
  • Kicking the tires with NestJS and Hotwire: Part II
    2 projects | dev.to | 15 Nov 2023
    If you want more details on the initial setup I encourage you to take a look at the Part I that covers more of the initial implementation. For this portion, I added Prisma as an ORM, a frontend style library called Tachyons, and AlpineJS to handle any client-side interactions. I did this to avoid needing to add a client-side bundler to the build and instead just rely on plain old module imports to compose the frontend. This is now the default for Rails and it is quite nice to not need any additional build tools for the client.
  • Deveplop a simple GUI app by Wails use Golang
    6 projects | news.ycombinator.com | 6 Nov 2023
    - [swallow-pywebview](https://github.com/rangwea/swallow-pywebview): Base on [pywebview](https://pywebview.flowrl.com/) using Python,the frontend base on [alpinejs](https://alpinejs.dev/) and [tailwindcss](https://tailwindcss.com/)。
  • How to Make an Animated Number Counter with Tailwind CSS
    1 project | dev.to | 3 Oct 2023
    If you’ve followed our other tutorials, you might be familiar with Alpine.js. It’s a lightweight JavaScript library that allows you to add interactivity to your site without writing a single line of JavaScript. It’s incredibly easy to use, and we’ll show you how to make the animation trigger when the user scrolls to it.
  • A First Look at HTMX and How it Compares to React
    6 projects | dev.to | 18 Sep 2023
    The approach is not new, essentially a variation of Knockout, Alpine, and similar "JS-in-HTML" approaches.

What are some alternatives?

When comparing hyperview and Alpine.js you can also consider the following projects:

idiomorph - A DOM-merging algorithm

Svelte - Cybernetically enhanced web apps

htmx - </> htmx - high power tools for HTML

petite-vue - 6kb subset of Vue optimized for progressive enhancement

AdaptiveCards - A new way for developers to exchange card content in a common and consistent way.

htmx-components - 🧩 Async HTMX + JSX

React - The library for web and native user interfaces.

DivKit - DivKit is an open source cross-platform Server-Driven UI (SDUI) framework for iOS, Android, and Web. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app

Stimulus - A modest JavaScript framework for the HTML you already have [Moved to: https://github.com/hotwired/stimulus]

dynamic_widget - A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code.

hyperscript - Create HyperText with JavaScript.