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 sets up node compatible middleware to handle Solid's SSR. It uses JSDOM and isolated processes to handle environment injection. See instructions below. Also provides solid-ssr/jest which is a Jest environment to render Solid when testing (probably unnecessary at this point).

This project is still in progress. Server rendering is Async and supports Suspense including lazy components. However, client side hydration only supports lazy components. Any Suspense triggering due to data fetching during rehydration will cause loading states to be entered again. Similarly while Web Components are support, the Shadow DOM isn't yet.

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. Set up server application:
const createServer = require("solid-ssr/server");
const render = createServer({ path: /* path to client entry*/ })

// under request handler
app.get("*", (req, res) => {
  const html = await render(req);
  res.send(html);
})
  1. Use renderToString in client entry for SSR:
// top of entry file, must be imported before any components
import ssr from "solid-ssr"
import { renderToString } from "solid-js/dom";

ssr(async (req) => {
  // pull url off request to handle routing
  const { url } = req;
  const string = await renderToString(() => <App />);
  return render(string);
});

Remember to mark all of "solid-js", "solid-js/dom", "solid-ssr" as externals as no need to bundle these for server rendering entry.

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"));

Example

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

lerna run build:example --stream
lerna run start:example --stream

Demos Async server side rendering with routing using Lazy Components and Suspense. Notice how the browser skips any initial loading state as it is prerendered. useTransition smooths loading of other tabs when navigating suspending the current content for 250ms before showing any fallback. The example also includes progressive hydration although there are currently no input fields to show it off. It captures input events before hydration is complete and replays them as it hydrates when safe to, to minimize uncanny valley.

FAQs

Package last updated on 01 Mar 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