crank VS solid

Compare crank vs solid and see what are their differences.

solid

A declarative, efficient, and flexible JavaScript library for building user interfaces. (by solidui)
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
crank solid
13 52
2,673 31,114
0.1% 1.0%
8.1 8.8
8 days ago 10 days ago
TypeScript TypeScript
MIT License 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.

crank

Posts with mentions or reviews of crank. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-08.
  • Coroutines in JavaScript for Web Components
    3 projects | news.ycombinator.com | 8 Mar 2024
    If you enjoy this approach, you might enjoy the Crank JS framework. https://crank.js.org/

    > Crank uses generator functions to define stateful components. You store state in local variables, and `yield` rather than `return` to keep it around.

  • Crank.js, the Just JavaScript Framework
    1 project | news.ycombinator.com | 2 Oct 2023
  • A Proposal for an asynchronous Rust GUI framework
    9 projects | news.ycombinator.com | 3 Sep 2023
    I'm very interested in seeing if using the commonly implemented forms of compiler support for async programming can also be well used for GUI programming. One wishawa[0] is also perusing this approach in Rust but I first came upon this idea from the crank-js[1] authors. It wasn't clear to me why that one never went anywhere. Was it failure with the approach or was React just a good solution in the space? I can say this though, there's something strikingly elegant about those initial samples of using JavaScript generators for components.

    [0]: https://github.com/wishawa/async_ui

    [1]: https://github.com/bikeshaving/crank

    6 projects | /r/rust | 2 Jun 2023
    Take a look at crank.js, a JavaScript framework where components can be written as async functions or as generators. It seems similar to what you're trying to do :)
  • UnsuckJS: Progressively enhance HTML with lightweight JavaScript libraries
    7 projects | news.ycombinator.com | 15 Jun 2023
  • Algebraic Effects – You Can Touch This (2019)
    1 project | news.ycombinator.com | 14 Dec 2022
    Well there's https://crank.js.org that uses native js generators where you would you normally put hooks in. Never used it but looked like a very neat idea.
  • What happens if you mix React, Mobx and generators*? Ok, let's do it!
    1 project | /r/javascript | 25 Jul 2022
    Reminds me of https://github.com/bikeshaving/crank, which was rather fun for a PoC I made a while back.
  • Are my components supposed to render multiple times?
    2 projects | /r/reactjs | 20 Feb 2022
    Strictly speaking, the framework hides this complexity away, but it still exists and it is the framework that's now paying the extra cost. Of course a framework is allowed, and should, when possible, hide away these things. For example Crank.js uses generators to allow for async Components as first class citizens, https://github.com/bikeshaving/crank, but they're still having to deal with the pitfalls of asynchronous work.
  • React State Museum - Examples to help portray the how, why, which, pros, and cons of various state management systems in the React ecosystem
    2 projects | /r/javascript | 29 Nov 2021
    To give the author of https://crank.js.org/ due credit, after reading through the descriptive posts I was impressed by the amount of thought and design that went into it.
  • What's New in React 18?
    3 projects | news.ycombinator.com | 29 Sep 2021
    > What do you propose as an alternative?

    There are lots of alternatives, but perhaps the simplest would have been to use async generators. This is how Crank[0] (mentioned elsewhere in this thread) works, and it allows you to do anything (AFAIK) that's possible with hooks with a much simpler and more testable API.

    > So, sure, there are limitations and rules you have to pay attention to with hooks... but that's just programming.

    No, it's not. The biggest problem with React hooks is that they are not composed of transferable knowledge, meaning memorizing these rules and patterns does not transfer outside of React; likewise, I can't use much of the knowledge I have already built up over many years of my career when using hooks. It's the same argument that's made against Rails, where you have to learn tons of Rails-specific idioms (on top of having to understand general concepts like relational database access patterns) instead of just writing code in a way that's more direct and intuitive for anyone.

    My brain has limited RAM. The more things I have to keep in my head when developing against an API, the more likely I am to make a mistake. With every release of React, I seem to have to keep more and more of these details in my brain as I work. Contrast this with something like Svelte, where you really only need to fully grok about two concepts to use it effectively. I understand that this is the tradeoff the React team made, but I'm not convinced it's worth it.

    [0]: https://crank.js.org/ and https://crank.js.org/blog/introducing-crank

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
  • Are there any go backends that work with solid?
    1 project | /r/solidjs | 14 Apr 2023
    I did try this but I'm not sure what you mean with the ssrLoadFrom. Is there any documentation on this, all I could find was the examples folder in solidjs: solid-ssr?
  • 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
  • Proposal for separation of concerns and immutable state
    1 project | /r/solidjs | 26 Jan 2023
    I basically came up with an idea that is much like flutter's bloc pattern, and probably waht ryansolid was referring to in his reply to this issue when he said he made his own version of redux that codifies state changes instead of immutable state.
  • Flutter 3 の状態管理 (State、ステート): アプローチ (概念)
    3 projects | dev.to | 7 Jan 2023
  • SolidJS Crash Course - Building a REST API Client - Part 1
    1 project | dev.to | 1 Jan 2023
  • Stores and indexed accessors
    1 project | /r/solidjs | 20 Dec 2022
    After seeing how inactive this sub was, I took it to Github: https://github.com/solidjs/solid/discussions/1440

What are some alternatives?

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

js-framework-benchmark - A comparison of the performance of a few popular javascript frameworks

qwik - Instant-loading web apps, without effort

React - The library for web and native user interfaces.

SvelteKit - web development, streamlined

async_ui - Lifetime-Friendly, Component-Based, Retained-Mode UI Powered by Async Rust

Angular - Deliver web apps with confidence 🚀

ava - Node.js test runner that lets you develop with confidence 🚀

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

sucrase - Super-fast alternative to Babel for when you can target modern JS runtimes

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

vue-promise-dialogs - A tiny & modern library that allows you to work with dialogs as with asynchronous functions.

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