About 400 results
Open links in new tab
  1. 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 …

  2. Solid Docs

    import { createSignal } from "solid-js"; function Counter() { const [count, setCount] = createSignal(0); return ( <button onClick={() => setCount((n) => n + 1)} > Count: {count()} …

  3. 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.

  4. Tutorials - SolidJS

    import { render } from 'solid-js/web'; function HelloWorld() { return <div>Hello World!</div>; }

  5. 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.

  6. Basics - Solid Docs

    Learn Solid component fundamentals: creating reusable UI blocks, component trees, lifecycles, and proper import/export patterns.

  7. 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(() => …

  8. 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.

  9. SolidStart: Fine-Grained Reactivity goes fullstack

    SolidStart is a JavaScript Framework designed to build SolidJS apps and deploy them to a variety of providers.

  10. SolidStart Docs

    import { createSignal } from "solid-js"; function Counter() { const [count, setCount] = createSignal(0); return ( <button onClick={() => setCount((n) => n + 1)} > Count: {count()} …