Open-Source Wikis

/

Solid

/

Packages

solidjs/solid

Packages

Active contributors: Ryan Carniato

solidjs/solid is a pnpm workspace. Five packages live under packages/:

Package Source npm name Versioned
solid-js packages/solid/ solid-js yes
babel-preset-solid packages/babel-preset-solid/ babel-preset-solid yes
solid-element packages/solid-element/ solid-element yes
solid-ssr packages/solid-ssr/ solid-ssr yes
test-integration packages/test-integration/ (not published) private

solid-js is the dominant package. Its packages/solid/package.json lists seven exports entry points, each documented as its own page below.

graph TD
    subgraph "solid-js (packages/solid/)"
        Core["solid-js (root)<br>reactive primitives + components"]
        Web["solid-js/web<br>browser DOM renderer"]
        Server["solid-js/web (server condition)<br>renderToString / Stream / Async"]
        Store["solid-js/store<br>proxy-based reactive trees"]
        Storage["solid-js/web/storage<br>SSR AsyncLocalStorage"]
        H["solid-js/h<br>HyperScript factory"]
        HTML["solid-js/html<br>tagged template literal"]
        Universal["solid-js/universal<br>custom-renderer factory"]

        Core --> Web
        Core --> Server
        Core --> Store
        Core --> Universal
        Web --> H
        Web --> HTML
        Web --> Storage
    end

    Babel["babel-preset-solid<br>(packages/babel-preset-solid)"]
    Element["solid-element<br>(packages/solid-element)"]
    SSR["solid-ssr<br>(packages/solid-ssr)"]
    Integration["test-integration<br>(packages/test-integration)"]

    Babel -->|emits calls into| Web
    Babel -->|emits calls into| Universal
    Element -->|consumes| Core
    Element -->|consumes| Web
    SSR -->|consumes| Server
    Integration -->|imports| Core
    Integration -->|imports| Web

Pages in this section

solid-js and its entry points

Sibling packages

Built by Factory AutoWiki from public repository content. It is a generated preview for codebase exploration, not source-maintained documentation.

Packages – Solid wiki | Factory