New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vue/apollo-ssr

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/apollo-ssr - npm Package Compare versions

Comparing version

to
4.0.0-alpha.17

29

dist/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.exportStates = exports.getStates = exports.serializeStates = void 0;
var serializeJs = require("serialize-javascript");
function serializeStates(apolloClients, options) {
if (options === void 0) { options = {}; }
var state = getStates(apolloClients, options);
const serializeJs = require("serialize-javascript");
function serializeStates(apolloClients, options = {}) {
const state = getStates(apolloClients, options);
return options.useUnsafeSerializer

@@ -13,12 +12,11 @@ ? JSON.stringify(state)

exports.serializeStates = serializeStates;
function getStates(apolloClients, options) {
if (options === void 0) { options = {}; }
var finalOptions = Object.assign({}, {
function getStates(apolloClients, options = {}) {
const finalOptions = Object.assign({}, {
exportNamespace: '',
}, options);
var states = {};
for (var key in apolloClients) {
var client = apolloClients[key];
var state = client.cache.extract();
states["".concat(finalOptions.exportNamespace).concat(key)] = state;
const states = {};
for (const key in apolloClients) {
const client = apolloClients[key];
const state = client.cache.extract();
states[`${finalOptions.exportNamespace}${key}`] = state;
}

@@ -28,5 +26,4 @@ return states;

exports.getStates = getStates;
function exportStates(apolloClients, options) {
if (options === void 0) { options = {}; }
var finalOptions = Object.assign({}, {
function exportStates(apolloClients, options = {}) {
const finalOptions = Object.assign({}, {
globalName: '__APOLLO_STATE__',

@@ -36,5 +33,5 @@ attachTo: 'window',

}, options);
return "".concat(finalOptions.attachTo, ".").concat(finalOptions.globalName, " = ").concat(serializeStates(apolloClients, options), ";");
return `${finalOptions.attachTo}.${finalOptions.globalName} = ${serializeStates(apolloClients, options)};`;
}
exports.exportStates = exportStates;
//# sourceMappingURL=index.js.map
{
"name": "@vue/apollo-ssr",
"version": "4.0.0-alpha.16",
"version": "4.0.0-alpha.17",
"description": "Apollo GraphQL for Vue - Server Side Rendering utilities",

@@ -30,7 +30,2 @@ "repository": {

],
"scripts": {
"dev": "yarn build --watch",
"build": "tsc --outDir dist -d",
"prepublishOnly": "yarn build"
},
"dependencies": {

@@ -40,5 +35,10 @@ "serialize-javascript": "^6.0.0"

"devDependencies": {
"@types/serialize-javascript": "^5.0.1"
"@apollo/client": "^3.6.2",
"@types/serialize-javascript": "^5.0.1",
"typescript": "^4.1.5"
},
"gitHead": "cb0e79489177be4d4c90cbe8a442e812c194cb4a"
}
"scripts": {
"dev": "pnpm run build --watch",
"build": "tsc --outDir dist -d"
}
}

@@ -1,3 +0,30 @@

# @vue/apollo-ssr
# Server-Side Rendering Utilities for Vue Apollo
Server-Side Rendering Utilities for Vue Apollo
[![npm](https://img.shields.io/npm/v/@vue/apollo-ssr.svg) ![npm](https://img.shields.io/npm/dm/@vue/apollo-ssr.svg)](https://www.npmjs.com/package/@vue/apollo-ssr)
[![apollo3](https://img.shields.io/badge/apollo-3.x-blue.svg)](https://www.apollographql.com/)
[![vue3](https://img.shields.io/badge/vue-3-brightgreen.svg)](https://vuejs.org/)
[![CircleCI branch](https://img.shields.io/circleci/build/github/vuejs/vue-apollo/v4.svg)](https://circleci.com/gh/vuejs/vue-apollo/tree/v4)
<p align="center">
<img src="https://cdn-images-1.medium.com/max/400/1*H9AANoofLqjS10Xd5TwRYw.png">
</p>
:book: Documentation [**for Vue 3**](http://v4.apollo.vuejs.org) | [for Vue 2](https://apollo.vuejs.org/)
[:pen: Contributing guide](./CONTRIBUTING.md)
[:heart: Sponsor me!](https://github.com/sponsors/Akryum)
```bash
npm i @vue/apollo-ssr
yarn add @vue/apollo-ssr
```
## Sponsors
<p align="center">
<a href="https://guillaume-chau.info/sponsors/" target="_blank">
<img src='https://akryum.netlify.app/sponsors.svg'/>
</a>
</p>

Sorry, the diff of this file is not supported yet