-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] SSR Support #1117
Comments
Hey @RedbackThomson, thanks for kicking off this conversation. As I mentioned on Slack, I've run into similar challenges in the ToggleShop. I'd love to find a way to support SSR and possibly SSG seamlessly. Do you think we should create a dedicated SDK for NextJS that adds Next-specific features? It would be nice to avoid supporting another SDK, but that may not be feasible. @toddbaert @lukas-reining, do either of you have an opinion on this? |
Here's some additional resources that may be useful while researching this topic: |
In #1157 we discussed (#1157 (review)) that our approach of using the In Next.js even "client components" will initially be rendered on the server. When // _app.tsx
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
// NEVER DO THIS:
// const queryClient = new QueryClient()
//
// Creating the queryClient at the file root level makes the cache shared
// between all requests and means _all_ data gets passed to _all_ users.
// Besides being bad for performance, this also leaks any sensitive data.
export default function MyApp({ Component, pageProps }) {
// Instead do this, which ensures each request has its own cache:
const [queryClient] = React.useState(
() =>
new QueryClient({
defaultOptions: {
queries: {
// With SSR, we usually want to set some default staleTime
// above 0 to avoid refetching immediately on the client
staleTime: 60 * 1000,
},
},
}),
)
return (
<QueryClientProvider client={queryClient}>
<Component {...pageProps} />
</QueryClientProvider>
)
} Am I overseeing anything here or can you confirm this observation @beeme1mr @toddbaert @RedbackThomson? If this is true, I think we should add a warning to the React SDK that it should not be used with Next.js.
The issue I just described should be mitigable by not using a global |
Requirements
The existing OpenFeature React SDK relies solely on the
@openfeature/web-sdk
package, intended to run client side (in the browser). When attempting to use the React SDK inside a NextJS application with SSR enabled, NextJS fails to render the page on the server and in the best case causes the page to stutter as it hydrates but in the worst case causes the application to fail to render at all.Today, in order to support SSR, our code needs to conditionally disable the use of the React SDK hooks (and the Web client) and replace them with the same call to the NodeJS SDK when it detects the code is executing within an SSR context (by checking
window === undefined
).Ideally the React SDK would have an option to natively support SSR in which it would:
@openfeature/server-sdk
clientThe text was updated successfully, but these errors were encountered: