
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
batched-graphql-request
Advanced tools
[](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
[](https://badge.fury.io/js/http-link-dataloader)
The npm package batched-graphql-request receives a total of 11 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.