Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@emartech/data-aggregator-language
Advanced tools
Execute aggregation expressions on a given data set.
Execute aggregation expressions on a given data set.
Given the following input data structure,
const input = [{
date: '2017-09-16',
reservations: {
silver: 12,
gold: 5
},
customers: ['brad']
}, {
date: '2017-09-17',
reservations: {
silver: 3,
gold: 2
},
customers: ['angelina']
}]
the parser allows mixing aggregation expressions over the input with common arithmetic operators.
For example,
SUM reservations.silver
would yield 12 + 3 = 15
.SUM reservations.silver + 3
would yield (12 + 3) + 3 = 18
const aggregator = require('@emartech/data-aggregator-language')(input);
const result = aggregator('SUM reservations.silver')
Examples below are for the input
defined above.
LENGTH
(yields 2)LENGTH + 3
(yields 5)5
(yields 5)SUM reservations.silver
(yields 15)LAST reservations.silver
(yields 3)AVERAGE reservations.silver
(yields 7.5)+, -, *, /
For example, (LAST reservations.silver + 3) * 2 / 2
(yields 6)
UNION customers
(yields ['brad', 'angelina'])EMPTY UNION customers
(yields false)NOT EMPTY UNION customers
(yields true)Because of the way the underlying Chevrotain library is implemented, name mangling interferes with the parser's operation. To resolve this issue, webpacked host projects need to disable name mangling for the token names used in this grammar.
To help with this, the module exports these names in a tokens
array.
To configure webpack, include the following in your webpack.config.js
:
const { tokens } = require('@emartech/data-aggregator-language');
module.exports.optimization = {
minimizer: [
new UglifyJsPlugin({
uglifyOptions: {
mangle: {
reserved: tokens
}
}
})
]
};
Semantic release depends on the Angular commit message conventions. Please follow these.
See package.json for required libraries and versions.
Uses SAP/chevrotain for parsing.
This project is open to feature requests/suggestions, bug reports etc. via GitHub issues. Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our Contribution Guidelines.
This software is provided as-is.
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its Code of Conduct at all times.
Copyright 2018-2023 SAP SE or an SAP affiliate company and data-aggregator-language contributors. Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool
FAQs
Execute aggregation expressions on a given data set.
The npm package @emartech/data-aggregator-language receives a total of 3 weekly downloads. As such, @emartech/data-aggregator-language popularity was classified as not popular.
We found that @emartech/data-aggregator-language demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 189 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.