Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Create streaming, rate-limited APIs with ease
npm install api-stream --save
Creating a streaming, rate-limited, caching Wikipedia search API:
var https = require('https'),
apiStream = require('api-stream'),
apiURL = 'https://en.wikipedia.org/w/api.php?action=opensearch&format=json&search=';
module.exports = apiStream.createApi(constructorOptions => (query, done) => {
https.get(apiURL + encodeURIComponent(query), res => {
var response = '';
if(res.statusCode !== 200) {
done({status: res.statusCode}, null);
return;
}
res.on('data', d => response += d);
res.on('end', () => done(null, JSON.parse(response)));
});
});
Using the created API:
var WikiSearchAPI = require('./wikistream.js');
// create an API stream which runs with a maximum of
// 10 queries per second, and caches results in wiki.db
var wikiStream = new WikiSearchAPI({
queriesPerSecond: 10,
cacheFile: 'wiki.db'
});
wikiStream.on('data', d => console.log(d));
wikiStream.on('end', () => console.log('Done.'));
wikiStream.write('Hamburg');
wikiStream.write('Ubilabs');
wikiStream.write('NodeJS');
wikiStream.end();
apiStream.createApi(initialiseEndpoint, endpointDefaultOptions = {})
<Function>
Endpoint initialisation function<Object>
Default options for the constructor of the created classThe endpoint initialisation function must take an options
object as parameter. The options can be user-defined upon initialisation of the generated API class. The endpoint initialisation function should return an endpoint function. The endpoint function is called for every item written to the generated API stream. It is passed two parameters:
?
. The query written to the stream, after it has been passed through the accessor
function.Function
. A callback function which must be called once, after the API query is completed. Pass an error as first parameter to indiciate failure, or null
to indicate success. Pass the API response as second parameter.The constructor of created stream class accepts an options object.
The options object is used to define some behaviour (e.g. queriesPerSecond, caching), and is then passed on as parameter to initialiseEndpoint
.
All default values may be overriden by re-defining the value in endpointDefaultOptions
.
By default, the created stream classes support the following options:
Number
, default: 35
. Defines the maximum number of requests per second. Must be at least 1
.String
, default: null
. Defines the name of the cache file to be used. The cache is disable if no name has been defined.Function
, default: data => data
. Items written to the stream will be passed through options.accessor
before being passed as query to queryEndpoint
.Object
, default: {current: 0}
. A statistics object which will be attached to each result. The options.stats.current
property is increment on each query.FAQs
Easily create streaming, rate-limited APIs
We found that api-stream 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.