Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@shopify/react-serialize

Package Overview
Dependencies
Maintainers
9
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/react-serialize - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "@shopify/react-serialize",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Provides an idiomatic way to serialize data for rehydration in a universal react application.",

@@ -10,1 +10,37 @@ # `@shopify/react-serialize`

```
## Usage
On the server, the `<Serializer />` component will serialize whatever you pass as it's `data` prop.
```javascript
// in your server renderer
import {Serializer} from '@shopify/react-serialize';
...
const apolloState = getDatafromTree(appMarkup)
const markup = react.renderToString(
<React.Fragment>
{appMarkup}
<Serializer id="apollo-data" data={apolloState}>
</React.Fragment>
);
```
Then on the client, you can use `getSerialized` to fetch that data out of the DOM and initialize whatever you need.
```javascript
// when you are rehydrating on the client
import {getSerialized} from '@shopify/react-serialize';
import ApolloClient from 'apollo-client';
...
const {data: initialApolloData} = getSerialized('apollo-data');
const client = new ApolloClient({
...myConfig,
cache: cache.restore(initialApolloData),
});
```
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