Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@shopify/koa-shopify-graphql-proxy
Advanced tools
A wrapper around `koa-better-http-proxy` which allows easy proxying of GraphQL requests from an embedded Shopify app
@shopify/koa-shopify-graphql-proxy
A wrapper around koa-better-http-proxy
which allows easy proxying of GraphQL requests from an embedded Shopify app.
yarn add @shopify/koa-shopify-graphql-proxy
The module exports a proxy middleware as its default export. It expects that you have other middleware set up (such as koa-shopify-auth) to authenticate requests with Shopify, and have session data stored on ctx.session
.
Attaching the middleware will proxy any requests sent to /graphql
on your app to the current logged-in shop found in session.
// server/index.js
import koa from 'koa';
import session from 'koa-session';
import createShopifyAuth from '@shopify/koa-shopify-auth';
import proxy from '@shopify/koa-shopify-graphql-proxy';
const app = koa();
app.use(session());
app.use(
createShopifyAuth({
/* your config here */
}),
);
app.use(proxy({version: 'unstable'}));
This allows client-side scripts to query a logged-in merchant's shop without needing to know the user's access token.
fetch('/graphql', {credentials: 'include', body: mySerializedGraphQL});
If you have your own /graphql
route and don't want to clobber it, you can use a library like (koa-mount
)[https://github.com/koajs/mount] to namespace the middleware.
// server/index
import mount from 'koa-mount';
//....
app.use(mount('/shopify', proxy({version: 'unstable'}));
// client/some-component.js
fetch('/shopify/graphql', {credentials: 'include', body: mySerializedGraphQL});
If you have a private shopify app, you can than skip over the auth step and use this library directly for setting up graphql proxy.
// server/index.js
import koa from 'koa';
import session from 'koa-session';
import proxy from '@shopify/koa-shopify-graphql-proxy';
const app = koa();
app.use(session());
app.use(
proxy({
version: 'unstable',
shop: '<my-shop-name>.myshopify.com',
password: '<your-app-password>',
}),
);
FAQs
A wrapper around `koa-better-http-proxy` which allows easy proxying of GraphQL requests from an embedded Shopify app
We found that @shopify/koa-shopify-graphql-proxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 24 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.