rfcs VS solid

Compare rfcs vs solid and see what are their differences.

rfcs

RFCs for substantial changes / feature additions to Vue core (by vuejs)

solid

A declarative, efficient, and flexible JavaScript library for building user interfaces. (by solidui)
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
rfcs solid
74 52
4,828 30,935
0.3% 1.2%
2.9 8.9
about 2 months ago 7 days ago
TypeScript
- 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.

rfcs

Posts with mentions or reviews of rfcs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-20.
  • Svelte 5: Runes
    7 projects | news.ycombinator.com | 20 Sep 2023
    ```

    We started experimenting with this ling of thought almost 3 years ago:

    - First take (ref sugar), Nov 2020: https://github.com/vuejs/rfcs/pull/228

    - Take 2, Aug 2021: https://github.com/vuejs/rfcs/pull/368

    - Take 3, Nov 2021: https://github.com/vuejs/rfcs/discussions/369

    We provided it as an experimental feature and had a decent number of users trying it out in production. The feedback wasn't great and eventually decided to drop it. https://github.com/vuejs/rfcs/discussions/369#discussioncomm...

  • Vue.js Reactivity System: Ref, reactive, shallowRef, & shallowReactive
    2 projects | dev.to | 18 May 2023
    This is a personal preference, but I use ref almost all the time. Despite tediously writing the .value to access the ref’s value, the Vue team is aware of the problem, and the open RFC - Reactivity Transform, was aiming to solve this issue, however, seems like it was abandoned.
  • The Rear-Vue Mirror: My Open-Source Origin Story
    9 projects | dev.to | 11 Apr 2023
    This was a good change. Evan has always been extremely good at putting his finger on the pulse of the frontend community. If there's a feature or paradigm that people love that would fit in Vue, Evan will incorporate it. Over the years, Vue has implemented (and sometimes later deprecated) dependency injection, JSX support, custom elements, Angular-style class components, Svelte-style ref sugar, and now Solid-inspired compiler optimizations. They even changed the order of a Vue file to match that of Svelte: first the script, then the template.
  • Vue 2 end of life December 2023
    3 projects | /r/vuejs | 13 Jan 2023
    Here is the Current language: https://github.com/vuejs/rfcs/blob/function-apis/active-rfcs/0000-function-api.md
  • I give up battling against React 🏳️
    2 projects | /r/webdev | 9 Jan 2023
    So here's the bottom line. You get RFCs looking like someone trying to land a man on the moon for things like generics in vue while the rest of the world gets work done. Eg https://github.com/vuejs/rfcs/discussions/436
  • WebGL minigame on my new portfolio website
    3 projects | /r/webdev | 7 Jan 2023
    Oh you meant that. Vue and Vite got amazing documentations and I recommend to read them through fully. One more thing i can also recommend is to read through Vue RFCs as well as they contain more extra info sometimes not covered in the docs: https://github.com/vuejs/rfcs Since Vite is based on Rollup, I'd additionally recommend to read Rollup docs, but I find it quite hard to read and navigate https://rollupjs.org/guide/en/#big-list-of-options
  • Vue.js 2022 Year In Review and what to expect in 2023
    2 projects | /r/javascript | 3 Jan 2023
    The Reactivity Transform, the way it is, is a fucking mess, and would introduce a lot of confusion into the already confused Vue 3 syntax.
  • How to make Vite not unload the previous route
    2 projects | /r/vuejs | 12 Dec 2022
    https://github.com/vuejs/vue-router/issues/703 https://github.com/vuejs/rfcs/blob/master/active-rfcs/0036-router-view-route-prop.md https://github.com/vuejs/vue-router/issues/703#issuecomment-428123334
  • Beginner here, start with react, svelte or solid?
    6 projects | /r/webdev | 3 Dec 2022
    Not a "huge drawback", but the excess of .value is annoying. The Reactivity Transform RFC attempts to mitigate that, but IMO it's a footgun and will make things a lot more confusing, so I hope it's not merged.
  • [AskJS] Anyone used Svelte on an enterprise-level or very complex app? What were your experiences?
    2 projects | /r/javascript | 10 Nov 2022
    For Vue 3, not so much. It not only introduced new different concepts, but also made a huge mess for newcomers with its variations (Options API, Composition API, Composition API with script setup), which are different but similar enough to be confused. And the upcoming Reactivity Transform will make it even more confusing by introducing new variations.

solid

Posts with mentions or reviews of solid. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-18.
  • Resources for understanding the Solid compiler
    3 projects | /r/solidjs | 18 Apr 2023
    The reactivity core, which is in https://github.com/solidjs/solid This is where you'll see the reactivity runtime implementation. Take note that Solid's reactivity doesn't rely on compile-time magic
  • Solid JS compared to svelte?
    2 projects | /r/solidjs | 17 Mar 2023
    This is very true. I really hate svelte single file components. But then I tried JSX for breaking things down. I love solid but I don't feel really good about angle brackets within C style syntax. I saw this Scala library that stick with simple statically typed function syntax than html tags. I don't understand why people still wants to stick with xml like tags. In laminar markup is written like this scala div( h1("Hello world", color := "red"), inputCaption, input(inputMods, name := "fullName"), div( ">>", button("Submit"), "<<" ) ) I wish solid team makes their HyperScript syntax as performant as JSX.
  • Building an E-commerce Store: A Step-by-Step Guide with Solidjs and Medusa
    3 projects | dev.to | 8 Mar 2023
    What is Solid?
  • Learn how to install SolidJS with Flowbite and Tailwind CSS
    6 projects | dev.to | 20 Feb 2023
    import logo from './logo.svg'; import styles from './App.module.css'; import 'flowbite'; function App() { return (
    logo

    Edit src/App.jsx and save to reload.

    Learn Solid, Tailwind CSS and Flowbite Toggle Flowbite modal
    ); } export default App;
  • Does solid start support CSR or SSG if so how?
    3 projects | /r/solidjs | 14 Feb 2023
    There is example of each technique in Solid's main repo: https://github.com/solidjs/solid/tree/main/packages/solid-ssr/examples
  • Flutter 3 の状態管理 (State、ステート): アプローチ (概念)
    3 projects | dev.to | 7 Jan 2023
  • Super Charging Fine-Grained Reactive Performance
    9 projects | dev.to | 1 Dec 2022
    Current reactivity benchmarks (Solid, CellX, Maverick) are focused on creation time, and update time for a static graph. Additionally, existing benchmarks aren't very configurable, and don't test for dynamic dependencies.
  • a first look at solidstart
    3 projects | dev.to | 23 Nov 2022
    Before diving into SolidStart, it's worth taking a moment to outline the history and motivation behind the creation of Solid. Branded as "a reactive JavaScript library for building user interfaces," Ryan open sourced the framework on April 24, 2018. It was designed as a spiritual successor to the reactive programming model exemplified by KnockoutJS.
  • Deno 1.28: Featuring 1.3M New Modules
    12 projects | news.ycombinator.com | 14 Nov 2022
    As always, less complexity and less expressive power at a given level go hand in hand: as far as I could understand, Deno as it exists right now can’t work with a relatively tame nonstandard approach to JSX such as that in Solid.js[1] (without essentially running a build step at startup), let alone a full language extension like Svelte[2] (there is a thing for that now[3], but I think it still squeezes in a build system somehow).

    [1] https://github.com/solidjs/solid/discussions/332

    [2] https://github.com/sveltejs/svelte/issues/4431

    [3] https://github.com/crewdevio/Snel

  • Reviewing 2021 and predicting 2022
    6 projects | dev.to | 12 Sep 2022
    This one hit late so I put it in July - SolidJS releases version 1.0.0. Never heard of it checkout the perf chart Ryan Carniato wroteup.

What are some alternatives?

When comparing rfcs and solid you can also consider the following projects:

qwik - Instant-loading web apps, without effort

SvelteKit - web development, streamlined

Angular - Deliver web apps with confidence 🚀

Preact - ⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.

astro - The web framework for content-driven websites. ⭐️ Star to support our work!

inferno - :fire: An extremely fast, React-like JavaScript library for building modern user interfaces

sycamore - A library for creating reactive web apps in Rust and WebAssembly

volar - ⚡ Explore high-performance tooling for Vue [Moved to: https://github.com/vuejs/language-tools]

Svelte - Cybernetically enhanced web apps

fast - The adaptive interface system for modern web experiences.

rust-dominator - Zero-cost ultra-high-performance declarative DOM library using FRP signals for Rust!

unplugin-auto-import - Auto import APIs on-demand for Vite, Webpack and Rollup