Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 28, 2021 03:27 pm GMT

SolidJS Official Release: The long road to 1.0

It's been a long road to get here. It's been so long I can't even remember when I started. I logged on to an old private Bitbucket Repo and found "initial commit" on a repo aptly named "framework" from August 21st 2016. But I'm pretty sure that was my second prototype of a Reactive JavaScript Framework that would eventually become SolidJS.

So I can safely say a stable release has been 1000s of hours and at least 5 years in the making. But I'm sure the commenters on Reddit/HN won't even read this far before getting in with "Another day, another new JavaScript Framework". Seriously, don't let me down. I keep a scorecard.

What is Solid?

It's a JavaScript framework, like React or Svelte. What makes it unique is that it flies in the face conventional knowledge to deliver what many have said to be impossible.

A reactive and precompiled "Virtual DOM"-less JSX framework with all the flexibility of React and simple mental model of Svelte.

A framework that values the explicity and composability of declarative JavaScript while staying close to the metal of the underlying DOM. It marries high level and low level abstractions. Simply put, it is anything that you want it to be.

A few people have suggested that Solid is the future.


But it is also firmly rooted in the past when JavaScript Frameworks were simpler and you had real DOM nodes at your finger tips.

When your JSX elements are just real DOM nodes:

const myButton = <button  onClick={() => console.log("Hello")}>Click Me</button>// myButton instanceof HTMLButtonElement

When your control flows are runtime JavaScript:

<div>{ showComponent() && <MyComp /> }</div>// custom end user created component<Paginated  list={someList()}  numberOfItems={25}>  {item => <div>{item.description}</div>}</Paginated>

When you can compose and build your primitives how you want:

function App() {  const [count, setCount] = createSignal(0);  // custom primitive with same syntax  const [state, setState] = createTweenState(0);  createEffect(() => {    // no need for that dependency list we know when you update    const c = count();    // yep I'm nested    createEffect(() => {      document.title = `Weird Sum ${ c + state() }`;    })  });  // Did I mention no stale closures to worry about?  // Our component only runs once  const t = setInterval(() => setCount(count() + 1, 5000);  onCleanup(() => clearInterval(t));  // other stuff...}

Well, you feel like you are cheating. And not just at benchmarks. You are not supposed to get your cake and eat it too. Full TypeScript support. A wonderful Vite starter template. All the modern tooling and IDE support you get for free by using JSX.

Why you should be excited

It isn't just the amazing developer experience. Solid is fully featured.

Powerful Primitives

Solid is built on the back of simple general purpose Reactive primitives. Solid embraces this like no Framework before having its very renderer built entirely of the same primitives you use to build your App. Afterall, are these really any different?

const el = <div>Initial Text</div>createEffect(() => {  el.textContent = getNewText();});// versusrender(() => <MyGiantApp />, document.getElementById("app"))

Every part of Solid is extensible because every part could be developed in user land. You get the high level abstractions that make you productive but you don't need to leave them to get low level capabilities people enjoyed back when jQuery was king.

Solid has a compiler but it's there to help you not limit you. You can compose behaviors everywhere and use the same primitives. It's all one syntax.

Solid has even brought Directives to JSX.

// directive using the same primitivesfunction accordion(node, isOpen) {  let initialHeight;  createEffect(() => {    if (!initialHeight) {      initialHeight = `${node.offsetHeight}px`;    }    node.style.height = isOpen() ? initialHeight : 0;  })}// use it like this<div use:accordion={isOpen()}>  {/* some expandable content */}</div>

Sophisticated Stores

Since Solid will likely never have React compatibility it is important to integrate well with the ecosystem that is already there.

Stores both bring an easy in-house method of state management and bring Solid's pinpoint updates to solutions you might already be familiar with like Redux and XState.

Stores use nested proxies, with opt in diffing for immutable data, that lets you update one atom of data and only have those specific parts of the view update. Not re-rendering Components, but literally updating the DOM elements in place.

No need for memoized selectors, it works and it works well.

Next Generation Features

Solid has all the next generation features. How about Concurrent Rendering, and Transitions to start?

We've spent the last 2 years developing out a Suspense on the server with Streaming Server-Side Rendering and Progressive Hydration. This setup works amazingly well even when deployed to a Cloudflare Worker.

Best in Class Performance

I was going to let this one go as people get tired of hearing it. After all, this news is several years old at this point.

Solid is the fastest(and often the smallest) JavaScript Framework in the browser and on the server. I won't bore you with the details you can read about it elsewhere.

But we did a survey recently and it seems our users are happy with our performance as well.

Survey Results

Who voted 1? There was more than one of you.

What's Next

1.0 represents stability and commitment to quality, but there is a lot more yet to do. We are working on Solid Start a Vite-based Isomorphic Starter that has all the best practices and Server rendering built in, with the ability to deploy to multiple platforms.

And while I started this alone 5 years ago. I'm hardly alone now. It is only through the dedicated work of the community that we have a REPL, countless 3rd party libraries to handle everything from drag and drop and animations, to Custom Elements that render 3D scenes.

Solid has been seeing adoption in tooling for IDEs with work being done on Atom and serving as the engine behind Glue Codes. And an early adopter(and perhaps influencer) of Builder.io's JSX-Lite.

Honestly, there are too many people to thank. Those that have come and gone but left a mark. From the early adopters who said encouraging words in our original Spectrum channel that kept me motivated, to the growing team of ecosystem collaborators and core maintainers. A project like this is dead in the water without others believing in it. So you have my deepest thanks.

There is a lot more to do. But in the meanwhile, check out our website, solidjs.com with docs, examples and 40 new tutorials. And come and say hi on our Discord. It's never been easier to get started with Solid.


Original Link: https://dev.to/ryansolid/solidjs-official-release-the-long-road-to-1-0-4ldd

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To