Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
batched-graphql-request
Advanced tools
[![npm version](https://badge.fury.io/js/batched-graphql-request.svg)](https://badge.fury.io/js/http-link-dataloader)
The idea of this library is to provide query batching and caching for Node.js backends on a per-request basis. That means, per http request to your Node.js backend, you create a new instance of BatchedGraphQLClient which has its own cache and batching. Sharing a BatchedGraphQLClient instance across requests against your webserver is not recommended as that would result in Memory Leaks with the Cache growing infinitely. The batching and caching is based on dataloader
npm install batched-graphql-request
In this example, we proxy requests that come in the form of batched array. Instead of sending each request individually to my-endpoint, all requests are again batched together and send grouped to the underlying endpoint, which increases the performance dramatically.
import { BatchedGraphQLClient } from 'batched-graphql-request'
import * as express from 'express'
import * as bodyParser from 'body-parser'
const app = express()
/*
This accepts POST requests to /graphql of this form:
[
{query: "...", variables: {}},
{query: "...", variables: {}},
{query: "...", variables: {}}
]
*/
app.use(
'/graphql',
bodyParser.json(),
async (req, res) => {
const client = new BatchedGraphQLClient('my-endpoint', {
headers: {
Authorization: 'Bearer my-jwt-token',
},
})
const requests = Array.isArray(req.body) ? req.body : [req.body]
const results = await Promise.all(requests.map(({query, variables}) => client.request(query, variables)))
res.json(results)
}
)
app.listen(3000, () =>
console.log('Server running.'),
)
To learn more about the usage, please check out graphql-request
FAQs
[![npm version](https://badge.fury.io/js/batched-graphql-request.svg)](https://badge.fury.io/js/http-link-dataloader)
The npm package batched-graphql-request receives a total of 1 weekly downloads. As such, batched-graphql-request popularity was classified as not popular.
We found that batched-graphql-request 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.