
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Data aggregation framework.
npm install logic
then
var logic = require('logic');
Clone repository, then
npm install
npm test
Logic helps you to define relationships between different data sources and combine it into the one solid responce. It knows nothing about how this data sources work.
There are two types of logics:
logic.define('logic-name', {
/**
* `logic-name` depends on this three,
* where 1 level of array will be ran in series
* and 2 level of array will be ran in parallel
*
* If any of this logics will be failed
* the root one also will be failed
*/
deps: ['logic-name-1', ['logic-name-2', 'logic-name-3']],
/**
* List of params `logic-name` depends on
*/
params: {
id: Array,
name: String
},
/**
* `logic-name-1` hook,
* will be called before its execution
* @param {Object} evt
*/
'logic-name-1': function(evt) {
evt.name; // 'logic-name-1'
evt.params; // params this logic will be requested with,
// inherited from the root logic `logic-name`
// can be overwritten, then will go with it's own params
evt.options; // logic options
evt.results; // array of already requested logics
evt.preventDefault(); // if called logic will be fullfiled
// with returned value immediately
return { status: 'prevented' };
},
/**
* Callback to be called when all logic are fullfiled
* @param {Array} results
* @param {Object} params
* @param {Object} options
*/
ready: function(results, params, options) {
results; // array of results
// in the order you declare it in `deps`
params; // params root logic was called with
return {
'logic-name-1': results[0],
'logic-name-2': results[1],
'logic-name-3': results[2]
};
}
});
Provider must decide if it will process logic with a given name, params and options or not. If so it should return function, or anything else otherwice (undefined or null is better). You can add as many providers, as you want, but only first match will be executed. logic
knows nothing about how provider works, it can be HTTP request, DB query, memory cache, etc. The only rule: provider function should return A+ promise.
logic.provider(function(name, params, options) {
if (name === 'accepted-logic') {
return function(name, params, options) {
return promise( name + JSON.stringify(params) );
}
}
});
Now in your API you can use just a single call, and logic
will take care about all the dependencies.
logic('logic-name', params, options)
.then(function(result) {});
FAQs
Dependencies manager
The npm package logic receives a total of 21 weekly downloads. As such, logic popularity was classified as not popular.
We found that logic 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.