canonic VS braid-spec

Compare canonic vs braid-spec and see what are their differences.

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
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
canonic braid-spec
14 7
115 216
1.7% 0.5%
3.8 8.1
5 months ago 5 months ago
C++
GNU General Public License v3.0 only -
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.

canonic

Posts with mentions or reviews of canonic. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-20.
  • Notes on WebAssembly
    2 projects | news.ycombinator.com | 20 Jun 2022
  • Why aren't devs making desktop apps any more
    10 projects | news.ycombinator.com | 24 Mar 2022
    I just founded a company where we're building a cross-platform native desktop app. Perhaps given we're on HN we can scope this to ask why aren't any _startups_ building native desktop apps?

    It's something I wonder about as well. We're building real-time performance critical software, so we don't have much of an alternative. Given these constraints, we also ruled out Electron, Avalonia, React Native early on.

    We're using Qt Quick which doesn't get nearly the love it should. I was a web developer for 5 years in a past life, and I'm pretty blown away by how pleasant and well-designed Qt Quick's QML language is. One of our team members created Canonic, https://www.canonic.com to explore how the web might look if QML was used as the document markup for the web.

    The popular opinion around Qt Quick is that it is best suited for mobile or embedded projects with a dynamic UI, animations, etc. But over the last few years, it has really become a great desktop solution – to the point where Qt put Widgets into maintenance mode and is focusing efforts on Qt Quick across desktop, mobile and embedded targets.

    With Qt 6, the GUI is drawn using native graphics acceleration: Metal on macOS, DirectX11 on Windows, Vulkan on Linux. This makes it really easy to bring in a texture you're drawing in some other piece of code outside of Qt. As a result, the QtMultimedia framework in Qt6 is zero-copy on most platforms with the FFmpeg backend. Frames get decoded if a GPU HW decoder is available, then this texture can be read directly by QtQuick and then rendered by the display server without ever being copied. I don't think there's a single other cross platform framework out there that achieves the same level of usability, performance and easy access to platform native APIs.

    Here are just a few non-trivial desktop apps that come to mind using Qt Quick:

    - Denon Engine DJ - https://enginedj.com/

  • Mark Nottingham: Server-Sent Events, WebSockets, and HTTP
    11 projects | news.ycombinator.com | 19 Feb 2022
  • I heard you like browsers. So I built a browser that runs in your browser via WASM (for QML instead of HTML)
    2 projects | /r/browsers | 19 Jan 2022
    Here's the website if you want to test it out: https://www.canonic.com
  • A Response to Rich Harris
    5 projects | news.ycombinator.com | 26 Dec 2021
    No, the end goal is to have an entirely separate browser which browses website built with all instead of html / js / css ; since Qt compiles to WASM it's a simple way to try it but the actual thing exists as a standalone desktop app: https://github.com/canonic/canonic
  • Canonic Browser: open-source QML Browser
    1 project | news.ycombinator.com | 4 Nov 2021
  • Canonic Browser – Open-Source QML Web Browser
    1 project | /r/CKsTechNews | 1 Nov 2021
    1 project | news.ycombinator.com | 1 Nov 2021
  • Canonic Browser | Open Source QML Web Browser
    2 projects | /r/QtFramework | 1 Nov 2021
    GitHub repo: https://github.com/canonic/canonic
    1 project | /r/test | 1 Nov 2021

braid-spec

Posts with mentions or reviews of braid-spec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-15.
  • Synit – A Reactive Operating System
    2 projects | news.ycombinator.com | 15 Jul 2023
    Hi! I have a few questions:

    1) What are the benefits of the reactive operating systems? Do you have any example use-cases that this does better than traditional approaches?

    2) Do you find this related to functional reactive programming at all?

    3) Since this is a model of concurrency with eventual consistency, do you see it benefitting from eventually-consistent OT or CRDT data types?

    I am working on what might be a related model: https://braid.org and https://stateb.us. We are building a "distributed state abstraction", that we envision will end up in three places:

    a) HTTP will upgrade from a state transfer to a state synchronization protocol

    b) Applications will be separated into UIs on top of a "web of state" (see https://stateb.us/static/statebus-demo-3-31.mp4 ) and transition from web apps to app webs

    c) Operating Systems will replace file systems with state systems; where local variables in memory can persist to disk without explicit read/write calls, and can be read/written across processes without programming overhead.

    I am wondering if we are all looking at the same programming abstraction, but from different angles!

  • Supabase Edge Runtime: Self-Hosted Deno Functions
    12 projects | news.ycombinator.com | 11 Apr 2023
    Thanks Lakshan!

    I don't think my use-case is necessarily a good fit for edge functions. I am trying to achieve what Supabase realtime/multiplayer accomplishes, but generically. I participate informally with the https://braid.org IETF working group, which to over-simplify is CRDTs over HTTP with subscriptions.

    I'm interested in web standards and that's what's drawn me to deno, so I'm super excited the more and more I see it being adopted. BroadcastChannel piques my interest because it is perfectly in that gray area of standardization-- it makes total sense on the client and we're on the cusp of discovering what that could look like for servers.

    In deno deploy, all the instances of my service are able to be linked together by BroadcastChannel, which I'm viewing as a p2p-style architecture. Ultimately, I'm curious about how this works under the hood and if it would be possible to interoperate a BroadcastChannel between Deno Deploy, Supabase, and say a Raspberry Pi in my house.

    I've gone on a bit of a tangent, but I think maybe I should get involved with the WinterCG, since now that I'm putting my thoughts to words-- seems like it fits their charter.

  • Jack Dorsey: a native internet protocol for social media
    2 projects | news.ycombinator.com | 14 Dec 2022
    Yes! This is the approach we're taking at https://braid.org -- extending HTTP itself into a decentralized synchronization protocol, so that any application built on top of it can be decentralized.

    Specifically, you can divide any application's protocol into two parts:

      - A data synchronization protocol
  • What Is JSON Patch?
    2 projects | news.ycombinator.com | 9 May 2022
    That doesn't work, because DELETE is defined to delete the entire resource. PUT is defined to replace the resource with the body, which would replace the resource with the patch. Only PATCH is defined to accept a patch and do something special with it.

    Another option, though, is to use the Range-Patch spec from: https://github.com/braid-org/braid-spec

  • Braid: Synchronization for HTTP
    1 project | news.ycombinator.com | 15 Apr 2022
  • Mark Nottingham: Server-Sent Events, WebSockets, and HTTP
    11 projects | news.ycombinator.com | 19 Feb 2022
    Your use-case sounds perfect for Braid: https://braid.org

    This works like SSE, but is designed specifically to articulate changes to the state of HTTP/REST resources.

    If you're in Javascript, you can use the braidify library: https://www.npmjs.com/package/braidify

What are some alternatives?

When comparing canonic and braid-spec you can also consider the following projects:

pushpin - A proxy server for adding push to your API, used at the core of Fastly's Fanout service

zotonic_mod_teleview - Mod teleview provides live updating server rendered views.

zotonic_mod_doom_fire

know-your-ietf-well - IETF Internet-Drafts, RFCs, erratas, ABNFs

KittehPlayer - A video player based on Qt, QML and libmpv with themes for many online video players.

phoenix_live_view - Rich, real-time user experiences with server-rendered HTML

unpoly - Progressive enhancement for HTML

http-core - Core HTTP Specifications

dotherside - C language library for creating bindings for the Qt QML language