Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Vega-plus extends the Vega dataflow to a client-server architecture to utilize the scalability advantage of DBMSs, we automatically translate Vega transform operators to SQL queries. To offload intensive calculations to the DBMS, combine vega-plus with on
Vega-plus extends the Vega dataflow to a client-server architecture to utilize the scalability advantage of DBMSs, we automatically translate Vega transform operators to SQL queries. To offload intensive calculations to the DBMS, combine vega-plus with one of our customized Vega transform that accepts SQL queries and requests data from a database.
Install the package with
yarn add vega-plus
Here is a complete example that uses vega-plus
and custom transform vega-transform-db
.
To use vega-transform-db
, install it with:
yarn add vega-plus
import { parse } from "vega-plus";
import VegaTransformPostgres from "vega-transform-db";
import vega from "vega";
const httpOptions = {
'url': 'http://localhost:3000/query',
'mode': 'cors',
'method': 'POST',
'headers': {
'Content-Type': 'application/x-www-form-urlencoded'
}
};
// register "dbtransform" transform
(vega as any).transforms['dbtransform'] = VegaTransformPostgres;
VegaTransformPostgres.setHttpOptions(httpOptions);
// use vega-plus API to parse a vega spec
// it will rewrite the original spec by extract the transforms to SQL queries
// and generates the rewriten dataflow runtime
const runtime = parse(spec, "dbtransform", VegaTransformPostgres)
const view = new vega.View(runtime)
.logLevel(vega.Info)
.renderer('svg')
.initialize(document.querySelector('#view'));
view.runAsync();
Once vega-transform-db
has been imported and registered, Vega specs can reference the transform and get data from PostgreSQL like this:
{
"data": [{
"type": "dbtransform",
"db": "postgres",
"relation": "cars"
}]
}
# parse(specification, type, transform[, config, option])
Similar to Vega's parse API, our parser requires two additional parameters:
FAQs
Vega-plus extends the Vega dataflow to a client-server architecture to utilize the scalability advantage of DBMSs, we automatically translate Vega transform operators to SQL queries. To offload intensive calculations to the DBMS, combine vega-plus with on
We found that vega-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.