list-positions-demos VS localfirstweb.dev

Compare list-positions-demos vs localfirstweb.dev and see what are their differences.

list-positions-demos

Demos using the list-positions and list-formatting libraries. (by mweidner037)

localfirstweb.dev

A list of various resources for local-first web development (by mylofi)
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
list-positions-demos localfirstweb.dev
2 25
14 168
- 0.6%
7.2 7.0
about 2 months ago 4 days ago
TypeScript HTML
- 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.

list-positions-demos

Posts with mentions or reviews of list-positions-demos. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-12.
  • Triplit: Open-source DB that syncs data between server and browser in real-time
    7 projects | news.ycombinator.com | 12 Jan 2024
    * Typescript schemas and type hinting in queries in return types

    For more advanced CRDT stuff, the creator of the Fugue List CRDT, created [a Triplit-powered collaborative text editor](https://github.com/mweidner037/list-demos/blob/master/tripli...) using Quill and his [List Positions](https://github.com/mweidner037/list-positions) library that we plan to have tighter integrations with.

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-05-30.
  • Engineering for Slow Internet
    5 projects | news.ycombinator.com | 30 May 2024
    The kind of scenario screams a local-first applications and solutions, and it's the reason why the Internet was created in the first place [1][2]. People have been duped by the misleading no software of Salesforce's advert slogan that goes against the very foundation and the spirit of the Internet. For most of its life and duration starting back in 1969, the Mbps is the anomaly not the norm and the its first killer application of email messaging (arguably the still best Internet application) is a local-first [3]. Ironically the culprit application that the author was lamenting in the article is a messaging app.

    [1] Local-first software: You own your data, in spite of the cloud:

    https://www.inkandswitch.com/local-first/

    [2] Local-first Software:

    https://localfirstweb.dev/

    [3] Leonard Kleinrock: Mr. Internet:

    https://www.latimes.com/opinion/la-oe-morrison-use24-2009oct...

  • What is Local-first Web Development?
    1 project | dev.to | 29 May 2024
    Website: A good starter site with many follow-up topics - Local First Web
  • HackNote
    2 projects | news.ycombinator.com | 25 May 2024
    Local-first (https://localfirstweb.dev) is a term that's not really well understood. Even though I have read on CRDTs etc. before, my first thought when I read local-first was that this is a web app that could work without network connection. I think we need a better term for web apps that sync to the cloud in a different fashion.
  • FireChat for protests – "Download this app, we are going to the protest"
    1 project | news.ycombinator.com | 19 May 2024
    - Regulatory Challenges: In the places where this is most needed, the country's laws are going to make it difficult for this app. I suspect you need to make this public and put that risk, unfortunately, on the side of the user. But some aspects that could help are using local first data (https://localfirstweb.dev/) where possible and decentralised data storage when it's not.
  • 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!

What are some alternatives?

When comparing list-positions-demos and localfirstweb.dev you can also consider the following projects:

list-positions - Efficient "positions" for lists and text - enabling rich documents and collaboration

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.

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

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

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

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

financier - 💰 Straight-forward budgeting.

CouchDB - Seamless multi-master syncing database with an intuitive HTTP/JSON API, designed for reliability

Visual Studio Code - Visual Studio Code

idb - IndexedDB, but with promises

pashto-dictionary - monorepo for LingDocs Pashto dictionary, account, and backend

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

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