Socket
Socket
Sign inDemoInstall

solid-ssr

Package Overview
Dependencies
Maintainers
1
Versions
248
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solid-ssr

Patches node to work with Solid's SSR


Version published
Weekly downloads
34
decreased by-94.69%
Maintainers
1
Weekly downloads
 
Created
Source

solid-ssr

This library patches node environment to enable Solid's SSR. Import solid-ssr/register at the top of your application. Also provides solid-ssr/jest which is a jest environment to render solid.

See example folder. Runs on http://localhost:8080/

This project is still early days. Server rendering is Async and supports Suspense including lazy components. However, client side hydration only supports lazy components. Any Suspense triggering during rehydration will cause loading states to be entered again.

To use SSR on the server:

  1. Install solid-js, solid-preset-solid, and solid-ssr.

  2. Configure babel-preset-solid with generate option 'ssr'

"presets": [["solid", { "generate": "ssr" }]]
  1. Patch node environment at top of program:
require("solid-ssr/register");
  1. Use renderToString entry:
import { renderToString } from "solid-js/dom";

const HTMLString = await renderToString(() => <App />);

To rehydrate on the client:

  1. Configure babel-preset-solid with generate option 'hydrate'
"presets": [["solid", { "generate": "hydrate" }]]
  1. Use hydrate entry:
import { hydrate } from "solid-js/dom";

hydrate(() => <App />, document.getElementById("main"));

FAQs

Package last updated on 27 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc