Solid

A declarative, efficient, and flexible JavaScript library for building user...

README

SolidJS

Build Status Coverage Status
NPM Version undefined Discord Subreddit subscribers


Solid is a declarative JavaScript library for creating user interfaces. Instead of using a Virtual DOM, it compiles its templates to real DOM nodes and updates them with fine-grained reactions. Declare your state and use it throughout your app, and when a piece of state changes, only the code that depends on it will rerun. Check out our intro video or read on!

Key Features


- Fine-grained updates to the real DOM
- Declarative data: model your state as a system with reactive primitives
- Render-once mental model: your components are regular JavaScript functions that run once to set up your view
- Automatic dependency tracking: accessing your reactive state subscribes to it
- Small and fast
- Simple: learn a few powerful concepts that can be reused, combined, and built on top of
- Provides modern framework features like JSX, fragments, Context, Portals, Suspense, streaming SSR, progressive hydration, Error Boundaries and concurrent rendering.
- Naturally debuggable: A `
` is a real div, so you can use your browser's devtools to inspect the rendering
- Web component friendly and can author custom elements
- Isomorphic: render your components on the client and the server
- Universal: write custom renderers to use Solid anywhere
- A growing community and ecosystem with active core team support

Quick Start

You can get started with a simple app by running the following in your terminal:

  1. ```sh
  2. > npx degit solidjs/templates/js my-app
  3. > cd my-app
  4. > npm i # or yarn or pnpm
  5. > npm run dev # or yarn or pnpm
  6. ```

Or for TypeScript:

  1. ```sh
  2. > npx degit solidjs/templates/ts my-app
  3. > cd my-app
  4. > npm i # or yarn or pnpm
  5. > npm run dev # or yarn or pnpm
  6. ```

This will create a minimal, client-rendered application powered by Vite.

Or you can install the dependencies in your own setup. To use Solid with JSX (_recommended_), run:

  1. ```sh
  2. > npm i -D babel-preset-solid
  3. > npm i solid-js
  4. ```

The easiest way to get set up is to add babel-preset-solid to your .babelrc, babel config for webpack, or rollup configuration:

  1. ``` js
  2. "presets": ["solid"]
  3. ```

For TypeScript to work, remember to set your .tsconfig to handle Solid's JSX:

  1. ``` js
  2. "compilerOptions": {
  3.   "jsx": "preserve",
  4.   "jsxImportSource": "solid-js",
  5. }
  6. ```


Why Solid?


Performant


Meticulously engineered for performance and with half a decade of research behind it, Solid's performance is almost indistinguishable from optimized vanilla JavaScript (See Solid on the JS Framework Benchmark). Solid is small and completely tree-shakable, and fast when rendering on the server, too. Whether you're writing a fully client-rendered SPA or a server-rendered app, your users see it faster than ever. (Read more about Solid's performance from the library's creator.)

Powerful


Solid is fully-featured with everything you can expect from a modern framework. Performant state management is built-in with Context and Stores: you don't have to reach for a third party library to manage global state (if you don't want to). With Resources, you can use data loaded from the server like any other piece of state and build a responsive UI for it thanks to Suspense and concurrent rendering. And when you're ready to move to the server, Solid has full SSR and serverless support, with streaming and progressive hydration to get to interactive as quickly as possible. (Check out our full interactive features walkthrough.)

Pragmatic


Do more with less: use simple, composable primitives without hidden rules and gotchas. In Solid, components are just functions - rendering is determined purely by how your state is used - so you're free to organize your code how you like and you don't have to learn a new rendering system. Solid encourages patterns like declarative code and read-write segregation that help keep your project maintainable, but isn't opinionated enough to get in your way.

Productive


Solid is built on established tools like JSX and TypeScript and integrates with the Vite ecosystem. Solid's bare-metal, minimal abstractions give you direct access to the DOM, making it easy to use your favorite native JavaScript libraries like D3. And the Solid ecosystem is growing fast, with custom primitives, component libraries, and build-time utilities that let you write Solid code in new ways.

Show Me!

  1. ``` js
  2. import { render } from "solid-js/web";
  3. import { createSignal } from "solid-js";

  4. // A component is just a function that (optionally) accepts properties and returns a DOM node
  5. const Counter = props => {
  6.   // Create a piece of reactive state, giving us a accessor, count(), and a setter, setCount()
  7.   const [count, setCount] = createSignal(props.startingCount || 1);

  8.   // The increment function calls the setter
  9.   const increment = () => setCount(count() + 1);

  10.   console.log(
  11.     "The body of the function runs once, like you'd expect from calling any other function, so you only ever see this console log once."
  12.   );

  13.   // JSX allows us to write HTML within our JavaScript function and include dynamic expressions using the { } syntax
  14.   // The only part of this that will ever rerender is the count() text.
  15.   return (
  16.     <button type="button" onClick={increment}>
  17.       Increment {count()}
  18.     </button>
  19.   );
  20. };

  21. // The render function mounts a component onto your page
  22. render(() => <Counter startingCount={2} />, document.getElementById("app"));
  23. ```

See it in action in our interactive Playground!

Solid compiles our JSX down to efficient real DOM expressions updates, still using the same reactive primitives (createSignal) at runtime but making sure there's as little rerendering as possible. Here's what that looks like in this example:

  1. ``` js
  2. import { render, createComponent, delegateEvents, insert, template } from "solid-js/web";
  3. import { createSignal } from "solid-js";

  4. const _tmpl$ = /*#__PURE__*/ template(`<button type="button">Increment </button>`, 2);

  5. const Counter = props => {
  6.   const [count, setCount] = createSignal(props.startingCount || 1);
  7.   const increment = () => setCount(count() + 1);

  8.   console.log("The body of the function runs once . . .");

  9.   return (() => {
  10.     //_el$ is a real DOM node!
  11.     const _el$ = _tmpl$.cloneNode(true);
  12.     _el$.firstChild;

  13.     _el$.$$click = increment;

  14.     //This inserts the count as a child of the button in a way that allows count to update without rerendering the whole button
  15.     insert(_el$, count, null);

  16.     return _el$;
  17.   })();
  18. };

  19. render(
  20.   () =>
  21.     createComponent(Counter, {
  22.       startingCount: 2
  23.     }),
  24.   document.getElementById("app")
  25. );

  26. delegateEvents(["click"]);
  27. ```


More


Check out our official documentation or browse some examples

Browser Support


SolidJS Core is committed to supporting the last 2 years of modern browsers including Firefox, Safari, Chrome and Edge (for desktop and mobile devices). We do not support IE or similar sunset browsers. For server environments, we support Node LTS and the latest Deno and Cloudflare Worker runtimes.

Testing Powered By SauceLabs

Community


Come chat with us on Discord! Solid's creator and the rest of the core team are active there, and we're always looking for contributions.

Contributors



Open Collective


Support us with a donation and help us continue our activities. [Contribute]


Sponsors


Become a sponsor and get your logo on our README on GitHub with a link to your site. [Become a sponsor]