
SolidJS · Reactive Javascript Library
Jan 9, 2010 · Solid is an open-source project supported by a team of public contributors. It's distributed under an MIT license. This library and community are made possible by a core …
Solid Docs
import { createSignal } from "solid-js"; function Counter() { const [count, setCount] = createSignal(0); return ( <button onClick={() => setCount((n) => n + 1)} > Count: {count()} …
Quick start - Solid Docs
Start building with Solid quickly. Try the playground, create projects with templates, and get your first Solid app running in minutes.
Tutorials - SolidJS
import { render } from 'solid-js/web'; function HelloWorld() { return <div>Hello World!</div>; }
Docs - SolidJS
Guides: Getting Started We moved our docs! Our docs have moved to a new domain. Please visit https://docs.solidjs.com for the latest documentation.
Basics - Solid Docs
Learn Solid component fundamentals: creating reusable UI blocks, component trees, lifecycles, and proper import/export patterns.
Routing & navigation - Solid Docs
import { lazy } from "solid-js"; import { render } from "solid-js/web"; import { Router, Route } from "@solidjs/router"; const Users = lazy(() => import("./pages/Users")); const Home = lazy(() => …
Packages | SolidJS
Oct 1, 2021 · solid-form-handler SolidJS library for building form components and validating forms with them. It can be integrated with vanilla form components or any SolidJS UI library.
SolidStart: Fine-Grained Reactivity goes fullstack
SolidStart is a JavaScript Framework designed to build SolidJS apps and deploy them to a variety of providers.
SolidStart Docs
import { createSignal } from "solid-js"; function Counter() { const [count, setCount] = createSignal(0); return ( <button onClick={() => setCount((n) => n + 1)} > Count: {count()} …