
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Bulk request plugin for hapi. Bhulk is an alternative to bassmaster and the main difference is that Bhulk only performs and responds to GET-requests. So in situations where you want a way to fetch things in bulk in a more RESTful way Bhulk might be a good alternative.
Install bhulk in your project npm install -S bhulk
and then require it into your server:
server.pack.require('bhulk', {
path: '/bulk',
}, function setupDone(error) {
if (error) throw error;
console.log('Bhulk smash!');
})
Passing the path:'/bulk' option is not necessary as it is the default. But there are a couple of options for controlling the behaviour of Bhulk:
path
- the path for the Bhulk route, defaults to '/bulk'.routeConfig
- configuration options for the route, will be merged with the default route config, see the "config" section of Route options in the hapi docs.remote
- by default Bhulk only performs subrequests to the server it's configured for, but by passing in a remote
you can specify a function that can call remote services as part of a bulk request. The signature of the function is remote(remote, request, reply)
. The request object has two attributes: url
and credentials
.A sample use of Bhulk (the query parameters as json for easier reading):
{
"stories": "/collections/5/stories?fields=entityId,entityType,addedBy",
"posts": "/posts?ids=${,}&fields=title,url",
"posts.source": "stories",
"posts.query": ".[*](eq(@.entityType, 'post')).entityId",
"authors": "/users?ids=${,}",
"authors.source": "stories",
"authors.query": ".*.addedBy",
"_debug": "true"
}
All requests in Bhulk are named here we have "stories", "posts", and "authors". A request can have a source
, which is a dependency on another request, whose result then can be used to build the request. The what values to select from the sources result is determined by the query
, which is an OBPath expression. So in the above exaple the "posts" request has "stories" and a source
and it will take all "entityId" values from objects in the result that have an "entityType" that matches 'post'. The ${,}
placeholder in the "posts" url "/posts?ids=${,}&fields=title,url,content,image" will be replaced with the unique values from the JSONPath query, separated by comma. So the actual request that will be made could look something like this: "/posts?ids=123,234&fields=title,url,content,image". It's also possible to suppress the results of requests with a suppress parameter, for stories that would look like this: "stories.suppress=true".
The "_debug" parameter causes bhulk to output metadata about the requests; how they are interpreted and what the final url resolves to.
Requests will be executed in parallel when possible. The "posts" and "authors" requests in the above example will both be made as soon as their source
request has finished.
The result will look like this:
{
"meta": {
"requests": {
"stories": {
"url": "/collections/5/stories?fields=entityId,entityType,addedBy"
},
"posts": {
"url": "/posts?ids=${,}&fields=title,url",
"source": "stories",
"query": ".[*](eq(@.entityType, 'post')).entityId",
"realUrl": "/posts?ids=123,234&fields=title,url"
},
"authors": {
"url": "/users?ids=${,}",
"source": "stories",
"query": ".*.addedBy",
"realUrl": "/users?ids=1001"
}
}
},
"results": {
"stories": [
{"entityId": 123, "entityType": "post", "addedBy": 1001},
{"entityId": 234, "entityType": "post", "addedBy": 1001}
],
"posts": [
{"title":"Foo", "url":"http://example.com/foo"},
{"title":"Bar", "url":"http://example.com/bar"}
],
"authors": [
{"id": 1001, "name": "Jane Doe", "avatar": "http://example.com/jane.png"}
]
}
}
FAQs
Batch request handling plugin for hapi
The npm package bhulk receives a total of 0 weekly downloads. As such, bhulk popularity was classified as not popular.
We found that bhulk 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.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.