Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
bs-react-ssr-prepass
Advanced tools
BuckleScript bindings for [`react-ssr-prepass`](https://github.com/FormidableLabs/react-ssr-prepass). This allows you to use React `Suspense` for data fetching on the server-side in ReasonML.
BuckleScript bindings for react-ssr-prepass
. This allows you to use React Suspense
for data fetching on the server-side in ReasonML.
These bindings expose a single function, ssrPrepass
, that allows you to walk your React tree and look for thrown Promise
s to trigger Suspense
. The argument passed to this function is a polymorphic variant with two possible constructors.
[
| `PrepassNode(React.element)
| `PrepassNodeVisitor(React.element, visitor)
]
If you just want to have react-ssr-prepass
walk your React tree (or a part of it) and suspend on any thrown Promise
s, just use the first constructor.
let prepass = ReactSSRPrepass.ssrPrepass(`PrepassNode(<App />));
prepass
|> Js.Promise.then_(() => {
Js.log("Prepass has finished. Server render the app!");
Js.Promise.resolve(() => ());
});
You can also pass a custom visitor
function to react-ssr-prepass
that will visit each React element in your application and allow you to execute custom data fetching logic based on the element
.
let prepass = ReactSSRPrepass.ssrPrepass(`PrepassNodeVisitor(<App />, element => {
/* Inspect the element as you like to call custom data fetching logic. */
}));
prepass
|> Js.Promise.then_(() => {
Js.log("Prepass has finished. Server render the app!");
Js.Promise.resolve(() => ());
});
Because ReasonReact doesn't expose any utilities for you to introspect React elements themselves (i.e. examine their type
, key
, or props
directly), the ReactSSRPrepass
module
exposes a few useful functions to deal with this. The first is toElementJS
. This function takes in a React.element
and returns a [@bs.deriving abstract]
object representing the raw React element. You can then use the accessors provided by the [@bs.deriving abstract]
to access those fields. An example will help make this clear:
let _ =
ReactSSRPrepass.ssrPrepass(
`PrepassNodeVisitor((
<App />,
element => {
/* Get the type property off the element. */
let elementType =
ReactSSRPrepass.toElementJS(element) |> ReactSSRPrepass.type_Get;
/* Get the type property off an arbitrary Component. */
let componentType =
Component.make(Js.Obj.empty())
|> ReactSSRPrepass.toElementJS
|> ReactSSRPrepass.type_Get;
/* Check if the types match. */
if (elementType === componentType) {
/* Execute specific data fetching logic for this element. */
Js.log("Execute data fetching logic!");
};
/* Return undefined. You can also return a promise from this function. */
Js.Nullable.undefined;
},
)),
);
Note that toElementJS
takes advantage of BuckleScript's %identity
trick. It's a bandaid solution as long as we can't get fully type-safe access to the internals of ReasonReact.element
.
FAQs
BuckleScript bindings for [`react-ssr-prepass`](https://github.com/FormidableLabs/react-ssr-prepass). This allows you to use React `Suspense` for data fetching on the server-side in ReasonML.
The npm package bs-react-ssr-prepass receives a total of 0 weekly downloads. As such, bs-react-ssr-prepass popularity was classified as not popular.
We found that bs-react-ssr-prepass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.