PWABuilder VS localfirstweb.dev

Compare PWABuilder vs localfirstweb.dev and see what are their differences.

PWABuilder

The simplest way to create progressive web apps across platforms and devices. Start here. This repo is home to several projects in the PWABuilder family of tools. (by pwa-builder)

localfirstweb.dev

A list of various resources for local-first web development (by localfirstweb)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
PWABuilder localfirstweb.dev
4 21
2,440 167
1.4% 0.6%
9.1 7.3
4 days ago 13 days ago
TypeScript HTML
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
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.

PWABuilder

Posts with mentions or reviews of PWABuilder. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-19.
  • Don't upload your PWA to the app stores
    1 project | dev.to | 10 Jan 2024
    For a PWA to be listed in app stores, it must be wrapped within additional software. This wrapper tends to be less robust and not as finely tuned as mainstream browsers, a fact that even PWABuilder acknowledges.
  • Offline Is Just Online with Extreme Latency
    4 projects | news.ycombinator.com | 19 Apr 2023
    Not to trivialize anyone's discovery; always happy to have more people on this bandwagon!

    But I have to say, PWAs (progressive web apps) might blow Jim's mind here.

    https://docs.pwabuilder.com/#/home/pwa-intro

    excerpt (emphasis added): "Service workers are how progressive web apps work offline: service workers can _cache essential resources and handle requests when the network is down_. Every request to and from a PWA goes through the service worker, and there are a ton of different strategies for how to cache and fetch necessary resources."

  • Tell HN: Building a universal electron for Mac is a complete nightmare
    3 projects | news.ycombinator.com | 30 Oct 2022
    There is some way for iOS, and some iOS apps work on M1, so maybe. Although Apple has been removing PWA style apps from App Store, so better check newest requirements somewhere at docs.

    https://www.pwabuilder.com

    https://docs.pwabuilder.com/#/builder/app-store

  • Progressive Web Apps Builder
    1 project | news.ycombinator.com | 24 Aug 2022

localfirstweb.dev

Posts with mentions or reviews of localfirstweb.dev. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-31.
  • Why I Care Deeply About Web Accessibility And You Should Too
    3 projects | dev.to | 31 Mar 2024
    Depending on how you ship these polyfills, you may even open up a security risk for them. There is a reason there are best practices such as progressive enhancement and local first. Is this always possible? Probably not, but does that mean we throw out the baby with the bathwater? I do not believe that is a good approach.
  • Martin Kleppmann talk on local-first (LoFi)
    1 project | news.ycombinator.com | 20 Feb 2024
    For those wondering what this is about (like I was). This is from their website:

    So, you want to build an app that has its data co-located with its UI? That works offline? That synchronizes between clients? And that lets its users own their data?

    Welcome to the world of local-first web development.

    https://localfirstweb.dev/

  • Triplit: Open-source DB that syncs data between server and browser in real-time
    7 projects | news.ycombinator.com | 12 Jan 2024
    That's awesome you've already considered of a similar design to Triplit. Re: storage, Triplit can basically bind to any storage capable of providing ordered key values so we have bindings for SQLite but in the browser you're best of doing either in-memory or IndexedDB (both of which are built-in), examples here: https://www.triplit.dev/docs/client-database/storage.

    Regarding similar projects there are a few you can find on https://localfirstweb.dev/ but Triplit stands out in a few ways:

  • LoFi/9 Meetup Tomorrow @11AM EST
    1 project | /r/localfirst | 1 Nov 2023
  • Some notes on local-first development
    5 projects | news.ycombinator.com | 12 Sep 2023
    This is sometimes called "LoFi" development these days and there's a Discord where people discuss it:

    https://localfirstweb.dev/

    Despite the name it's not really a web exclusive community.

    Actually the web isn't a great way to do this, there's alternate stacks that maybe can work better. The Android stack has been rewritten in recent years by Google and parts are now usable on desktop and iOS. Someone posted this to the Kotlin slack earlier today which is how they implement local-first using the Kotlin stack:

    https://medium.com/@mike_21858/auto-generating-an-http-serve...

    The idea is that you can use Kotlin for both server, Android and also a desktop client, and with KMP you're also able to use it on iOS for the backend (UI is still in Swift). So you can share your domain model across all devices and the underlying sync protocols and logic can be auto generated using a compiler plugin. The underlying DB is SQLite wrapped using a library from Google called Room which makes SQLite a bit easier to use.

    I’ve been working on apps for limited connectivity environments such as Afghanistan and rural Rwanda for many years. I think we have to make offline-first a lot easier than it is now. Our own app Ustad Mobile has more than 60 tables in the database. Writing manual logic to run all of those offline would 1) exceed the resources we have and 2) be prone to human error.

    This article introduces Door: our open-source way to automate the generation of an offline-first data layer using Kotlin Multiplatform and Kotlin Symbol Processing (KSP). Door is still a work-in-progress and not ready for production use in other apps yet, but we think it’s a game-changer for offline-first development. Feedback on the concept and API is welcome. Door can automatically generate HTTP server endpoints and an offline first client based on a Room database.

    Deploying such an app on Android is obvious, for iOS you need to learn about Kotlin/Multiplatform but obviously SQLite can run on iOS just fine and Kotlin can interop with Objective-C/Swift. For desktop, deployment is easy if you use Conveyor, which the Ustad guys are planning to do, as it supports Kotlin desktop apps out of the box. You do need to buy signing certificates (or distribute via the app stores) but that's a one time cost.

    The main issue here is if you're wedded to the web. Probably stuff can be done with WASM but it's not going to be as natural as just using the tech on the JVM.

  • A comprehensive guide to making your web app feel native
    2 projects | dev.to | 14 Aug 2023
    This is a growing area of focus in some web communities, and it's called local-first. Verdant is a full local-first framework, including upgrading to multi-device sync and multiplayer with a server when you're ready. I wrote a bit on it elsewhere, and there's an emerging community around local-first more broadly. Check it out!
  • Snappy UIs with WebAssembly and Web Workers
    2 projects | news.ycombinator.com | 7 Aug 2023
    WASM and Web Workers- unless carefully used - won't magically make your UI snappy.

    There are three reasons (for the vast majority of apps) that a UI feels sluggish:

    1. The network! Requesting data from a server is slow, by far the slowest aspect of any app. As a start, prefetch and cache, use a CDN, try edge platforms that move data and compute closer to the user. However, if you can explore Local First (http://localfirstweb.dev), for a web app it is the way we should be looking to build in future.

    2. They are doing work on the UI thread that takes longer than 16ms. This is where Web Workers are perfect, the DX around them isn't perfect, as another comment suggested Comlink helps, but there is a lot of opportunity here to build abstractions that help devs.

    3. Excessive animations that delay user interaction - there is so much bad UX where animations have been added that only make things slower. Good animations have a purpose, showing where something came from or is going, and never get in the way.

    Finally, we are well into diminishing returns with front end frameworks optimising the way they do templating and update the DOM. The key thing there now is DX, that is how you pick a framework, benchmarks are almost always useless.

  • So, you want to deploy on the edge?
    2 projects | news.ycombinator.com | 31 Jul 2023
    The real "edge" is the users device, I'm 100% sold on the concept of "local first". There is a great community building around this: https://localfirstweb.dev/
  • Where do you discuss computer related stuff now?
    1 project | news.ycombinator.com | 25 Jul 2023
    This is very much what the local first movement is about: https://localfirstweb.dev/

    Give users control of their data, moving away from large backend infrastructure, and providing better value to the user. With the bonus of having a more enjoyable development environment and an excited community.

  • Why SQLite is so great for the edge
    3 projects | news.ycombinator.com | 6 Jun 2023

What are some alternatives?

When comparing PWABuilder and localfirstweb.dev you can also consider the following projects:

tauri - Build smaller, faster, and more secure desktop applications with a web frontend.

sqlsync - SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.

Smart-Text-Editor - The text editor that requires only a browser and a keyboard!

durafetch-server - Download all Cloudflare durable object state to a local SQLite database.

hamsterbase - self-hosted, local-first web archive application.

rqlite - The lightweight, distributed relational database built on SQLite.

Wekan - The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://app.transifex.com/wekan/wekan only.

evolu - Local-first platform designed for privacy, ease of use, and no vendor lock-in

Visual Studio Code - Visual Studio Code

financier - 💰 Straight-forward budgeting.

pwa-starter - Welcome to the PWABuilder pwa-starter! Looking to build a new Progressive Web App and not sure where to get started? This is what you are looking for!