Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
batchloader
Advanced tools
BatchLoader is a utility for data fetching layer to reduce requests via batching written in TypeScript. Inspired by Facebook's DataLoader
BatchLoader is a batching utility for data fetching layer to reduce requests round trips, inspired by Facebook's DataLoader, written in TypeScript.
BatchLoader is a simplified version of Facebook's DataLoader and can be used with any database such as MongoDB or with GraphQL.
+ written in TypeScript
+ Further reduces data fetching requests by filtering out duplicate keys
+ Similar api as DataLoader
+ Smaller in size (0 dependencies)
+ MappedBatchLoader can be used to compose a new loader using existing loaders.
- Removed caching functionalities. Leave caching to better cache libraries.
It is a very simple batcher that only does batching, and it does it very well.
First, install BatchLoader using npm.
npm install --save batchloader
or with Yarn,
yarn add batchloader
Note: BatchLoader assumes a JavaScript environment with global ES6
Promise
, available in all supported versions of Node.js.
Create loaders by providing a batch loading function and key transformation function (used for finding duplicate keys).
import { BatchLoader } from 'batchloader';
const userLoader = new BatchLoader(
(_ids: ObjectId[]) => User.getByIds(_ids), // [required] batch function.
(_id: ObjectId) => _id.toString(), // [optional] key to unique id function. must return string. used for finding duplicate keys.
100 // [optional = 0] batch delay in ms. default 0 ms.
);
const user1 = await userLoader.load(id1);
const [user1, user2] = await userLoader.loadMany([id1, id2]);
const [user1, user1, user1] = await userLoader.loadMany([id1, id1, id1]); // batch function receives only one id1 since duplicate ids. Still returs three items just as requested.
const [user1, user2, user3, user2, user1] = await Promise.all([
userLoader.load(id1),
userLoader.load(id2),
userLoader.load(id3),
userLoader.load(id2),
userLoader.load(id1),
]); // batch function receives [id1, id2, id3] only without duplicate ids.
A batch loading function must be of the following type:
(keys: Key[]) => Value[] | Promise<Value[]> // keys.length === values.length
Constraints
A function must return string value given a key:
(key: Key) => string
If key is not uniquely identifiable, simply pass null
instead. This will disable filtering out duplicate keys, and still work the same way.
const loader = new BatchLoader(
(keys: Key[]) => loadValues(keys),
null // keys cannot be transformed into string. no duplicates filtering.
);
const v1 = await loader.load(k1);
const [v1, v2, v1] = await loader.loadMany([k1, k2, k1]); // batch function receives [k1, k2, k1] as keys
You can map a loader to create another loader.
import { MappedBatchLoader } from 'batchloader';
const usernameLoader = new MappedBatchLoader(
userLoader, // previously defined loader
(user) => user && user.username // mapping function
);
// same APIs as BatchLoader
const username = await usernameLoader.load(userId);
const [username1, username2] = await usernameLoader.loadMany([userId1, userId2]);
const [user1, username1] = await Promise.all([
userLoader.load(id1),
usernameLoader.load(id1),
]) // one round-trip request with keys being [id1], since usernameLoader is using userLoader internally and id1 is duplicate.
const anotherMappedLoader = new MappedBatchLoader(
usernameLoader, // MappedBatchLoader can be mapped, too.
...
);
Unlike DataLoader, BatchLoader does not do any caching. This is intentional, because you may want to use your favorite cache library that is best suited for your own use case. You can add caching ability easily like so:
let userCache = {};
const cachedUserLoader = new BatchLoader(
async (ids) => {
const uncachedIds = ids.filter(id => !userCache[id]);
const users = await getUsersByIds(uncachedIds);
uncachedIds.forEach((id, i) => { userCache[id] = users[i]; });
return ids.map(id => userCache[id]);
},
...
);
delete userCache[id1]; // delete cache by key
userCache[id2] = user2; // add cache by key
userCache = {}; // empty cache
Choose whatever caching library you like and simply add it like above.
FAQs
BatchLoader is a utility for data fetching layer to reduce requests via batching written in TypeScript. Inspired by Facebook's DataLoader
The npm package batchloader receives a total of 217 weekly downloads. As such, batchloader popularity was classified as not popular.
We found that batchloader 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.