hyperview VS applin-ios

Compare hyperview vs applin-ios and see what are their differences.

hyperview

Server-driven mobile apps with React Native (by Instawork)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
hyperview applin-ios
22 5
1,062 1
4.4% -
9.1 9.0
17 days ago about 2 months ago
TypeScript Swift
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/

applin-ios

Posts with mentions or reviews of applin-ios. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-01.
  • FastUI: Build Better UIs Faster
    12 projects | news.ycombinator.com | 1 Mar 2024
    > Beyond Python and React ... Implementing frontends for other platforms like mobile ...

    Shameless plug: I built a mobile version of this: https://www.applin.dev

  • Strada Released
    4 projects | news.ycombinator.com | 20 Sep 2023
    I built a thing that makes it much simpler to make apps: https://www.applin.dev

    You make a web server that returns JSON defining your UI. Then you make a native iOS app by copy/pasting the provided Main.swift file and adding the URL of your server. The app uses an iOS client library, fetches the JSON page definition, and builds/updates the page with native widgets. I'm planning to eventually build Android, web, and desktop clients.

  • Applin™ Server-Driven UI Framework for Mobile Apps
    1 project | /r/programming | 17 Sep 2023
  • Applin Server-Driven UI for Mobile Apps
    1 project | news.ycombinator.com | 15 Sep 2023
  • Show HN: Applin – define mobile UI in server code
    2 projects | news.ycombinator.com | 15 Sep 2023
    Hi HN, I'm a backend engineer who made an app and didn’t like the tools. Then I made the thing I needed: a mobile app toolkit for backend engineers. I'm calling it Applin™. :)

    https://www.applin.dev/

    How it works: You make an HTTP server that returns JSON objects that define page content. Then you make a mobile app that calls the server and renders the pages using native widgets. Applin is the server and client libraries that make this easy.

    Server libraries: Currently there's Rails https://rubygems.org/gems/applin-rails and https://github.com/leonhard-llc/applin-rails-demo . Which languages shall I add next?

    Client libraries: Currently there's iOS https://github.com/leonhard-llc/applin-ios . Which platform shall I add next?

    They say, if you're not embarrassed by the quality, then you're launching too late. Applin is usable and not yet pretty and not yet comprehensive. I need customer feedback on priority and requirements.

    To try it out right away, use https://apps.apple.com/us/app/applin-tester/id6464230000 and tap the rails-demo link.

    The hardest part of this project was making the client update the page without losing keyboard focus and scrolling to the top. To do that, the code must pick the correct existing widgets for each new version of the widget tree. The current (working) version performs five passes over the widget tree: first picking focused widgets and their ancestors, then focus-able widgets, then other stateful widgets, then widgets with matching attributes (label, URL, etc.), and finally former siblings of the correct type. Then it creates any new widgets. Now that it has widgets for the new tree, the code updates the widget tree without removing any sub-widget that will be added again. This prevents losing keyboard focus and prevents resetting scroll positions. Here's the code:

    https://github.com/leonhard-llc/applin-ios/blob/main/Sources/ApplinIos/page/widget_cache.swift

    Please try out Applin, use it at your company (buy a license), and let me know what features to build first! Post a comment here, add a GitHub issue, or email me at [email protected] .

    To get updates, join https://groups.google.com/g/applin-announce .

    Thanks for reading! :) --Michael

What are some alternatives?

When comparing hyperview and applin-ios you can also consider the following projects:

idiomorph - A DOM-merging algorithm

turbo - The speed of a single-page web application without having to write any JavaScript

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

masilotti.com - Source for masilotti.com, built with Bridgetown and Tailwind CSS.

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

applin-rails-demo - Example of how to use applin-rails.

htmx-components - 🧩 Async HTMX + JSX

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

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

spx - ⚡ Single Page XHR for enhancing SSR powered web applications.

hotwire-golang-website - This project provides some working examples using Go and Hotwire Turbo.

json_dynamic_widget