Gathering detailed insights and metrics for @plasmicapp/react-ssr-prepass
Gathering detailed insights and metrics for @plasmicapp/react-ssr-prepass
Gathering detailed insights and metrics for @plasmicapp/react-ssr-prepass
Gathering detailed insights and metrics for @plasmicapp/react-ssr-prepass
react-ssr-prepass
A custom partial React SSR renderer for prefetching and suspense
@plasmicapp/query
This is a mini isomorphic, _component-level_ data-fetching library. It lets you fetch data client-side or server-side. On the server, it lets you fetch data from any component, Suspense-style.
@plasmicapp/nextjs-app-router
This package provides helpers for doing extractPlasmicQueryData() with Next.js App Router.
preact-ssr-prepass
react-ssr-prepass drop-in replacement for preact-x
npm install @plasmicapp/react-ssr-prepass
93.7
Supply Chain
98.7
Quality
87.9
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
592 Stars
134 Commits
26 Forks
48 Watching
5 Branches
73 Contributors
Updated on 24 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
2.8%
3,817
Compared to previous day
Last week
8.6%
22,885
Compared to previous week
Last month
14.2%
95,338
Compared to previous month
Last year
306.6%
898,946
Compared to previous year
1
24
react-dom/server
does not have support for suspense yet.
react-ssr-prepass
offers suspense on the server-side today, until it does. ✨
react-ssr-prepass
is a partial server-side React renderer that does a prepass
on a React element tree and suspends when it finds thrown promises. It also
accepts a visitor function that can be used to suspend on anything.
You can use it to fetch data before your SSR code calls renderToString
or
renderToNodeStream
.
⚠️ Note: Suspense is unstable and experimental. This library purely exists since
react-dom/server
does not support data fetching or suspense yet. This two-pass approach should just be used until server-side suspense support lands in React.
It's quite common to have some data that needs to be fetched before server-side rendering and often it's inconvenient to specifically call out to random fetch calls to get some data. Instead Suspense offers a practical way to automatically fetch some required data, but is currently only supported in client-side React.
react-ssr-prepass
offers a solution by being a "prepass" function
that walks a React element tree and executing suspense. It finds all
thrown promises (a custom visitor can also be provided) and waits for
those promises to resolve before continuing to walk that particular
suspended subtree. Hence, it attempts to offer a practical way to
use suspense and complex data fetching logic today.
A two-pass React render is already quite common for in other libraries
that do implement data fetching. This has however become quite impractical.
While it was trivial to previously implement a primitive React renderer,
these days a lot more moving parts are involved to make such a renderer
correct and stable. This is why some implementations now simply rely
on calling renderToStaticMarkup
repeatedly.
react-ssr-prepass
on the other hand is a custom implementation
of a React renderer. It attempts to stay true and correct to the
React implementation by:
ReactPartialRenderer
react-is
First install react-ssr-prepass
alongside react
and react-dom
:
1yarn add react-ssr-prepass 2# or 3npm install --save react-ssr-prepass
In your SSR code you may now add it in front of your usual renderToString
or renderToNodeStream
code:
1import { createElement } from 'react' 2import { renderToString } from 'react-dom/server' 3 4import ssrPrepass from 'react-ssr-prepass' 5 6const renderApp = async (App) => { 7 const element = createElement(App) 8 await ssrPrepass(element) 9 10 return renderToString(element) 11}
Additionally you can also pass a "visitor function" as your second argument. This function is called for every React class or function element that is encountered.
1ssrPrepass(<App />, (element, instance) => { 2 if (element.type === SomeData) { 3 return fetchData() 4 } else if (instance && instance.fetchData) { 5 return instance.fetchData() 6 } 7})
The first argument of the visitor is the React element. The second is
the instance of a class component or undefined. When you return
a promise from this function react-ssr-prepass
will suspend before
rendering this element.
You should be aware that react-ssr-prepass
does not handle any
data rehydration. In most cases it's fine to collect data from your cache
or store after running ssrPrepass
, turn it into JSON, and send it
down in your HTML result.
This library is (luckily) not a reimplementation from scratch of
React's server-side rendering. Instead it's mostly based on
React's own server-side rendering logic that resides in its
ReactPartialRenderer
.
The approach of doing an initial "data fetching pass" is inspired by:
Experimental: This project is quite new. We're not sure what our ongoing maintenance plan for this project will be. Bug reports, feature requests and pull requests are welcome. If you like this project, let us know!
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 11/30 approved changesets -- score normalized to 3
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
15 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More