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.
cassandra-cql-builder
Advanced tools
Simple Cassandra CQL Builder in Javascript
$ npm install --save cassandra-cql-builder
import { Insert, Select, Update, Delete, CqlBuilderError } from 'cassandra-cql-builder';
const result = Select().table('test_table', 'test_keyspace').build();
// Returns...
// result.query = 'SELECT * FROM test_keyspace.test_table'
// result.params = []
Generate insert query
const cql = Insert()
.table('test_table', 'test_keyspace')
.value('column1', 1)
.option('TTL', 86400)
.option('TIMESTAMP', 12345678)
.build();
// Returns...
// cql.query = 'INSERT INTO test_keyspace.test_table (column1) VALUES (?) USING TTL ? AND TIMESTAMP ?'
// cql.params = [1, 86400, 12345678]
Generate select query
const cql = Select()
.table('test_table', 'test_keyspace')
.field(['column1', 'column2'])
.field('column3')
.where('key1 = ?', 1000)
.where('key2 > ?', 2000)
.limit(5000)
.order('key1 DESC')
.where('key3 IN (?, ?)', 3000, 4000)
.option('TTL', 86400)
.build();
// Returns...
// cql.query = 'SELECT column1, column2, column3 FROM test_keyspace.test_table WHERE key1 = ? AND key2 > ? AND key3 IN (?, ?) ORDER BY key1 DESC LIMIT ?'
// cql.params = [1000, 2000, 3000, 4000, 5000]
Generate update query
const cql = Update()
.table('test_table')
.set('column1', 1)
.where('key1 = ?', 'a')
.option('TTL', 3000)
.upsert(true)
.build();
// Returns...
// cql.query = 'UPDATE test_table USING TTL ? SET column1 = ? WHERE key1 = ?'
// cql.params = [3000, 1, 'a']
Generate delete query
const cql = Delete()
.table('test_table')
.where('key1 = ?', 'a')
.field(['column1', 'column2'])
.option('TIMESTAMP', 12345678)
.build();
// Returns...
// cql.query = 'DELETE column1, column2 FROM test_table USING TIMESTAMP ? WHERE key1 = ?'
// cql.params = [12345678, 'a']
$ git clone git@github.com:ridibooks/cql-builder.git
$ cd cql-builder
$ npm install
Webpack build using Babel (Not required in development.)
$ npm run build
Tests using Jest
$ npm test
FAQs
Cassandra CQL Builder
We found that cassandra-cql-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.