
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
node-mysql-query
Advanced tools
A lightweight Promise-based Query generator to be used with node-mysql-helper.
#node-mysql-query
A query builder and executer that works in well with node-mysql-helper (optional).
##Features/Goals:
##Need to Know
All fields must be enclosed with backticks like `fieldname` (referring to the base table) OR prefixed with the table name table.id.
If you do not use AS the results will always be returned as tablename.fieldname.
Uppercase Mysql Reserved Words will automatically be recognized. If you want to enforce a string rather than a reserved word, you have two options:
##Simple Example
//must configure the MysqlHelper before using node-mysql-query
var MysqlHelper = require('node-mysql-helper');
var mysqlOptions = {
host: 'bessie.com',
user: 'username',
password: 'chicken',
database: 'dbname'
};
//pool 5 connections
MysqlHelper.connect(mysqlOptions, 5);
//now I can use node-mysql-query
var Query = require('node-mysql-query');
var query=Query('base_table')
.fields([
'`id` AS `id`',
'base_table.id AS `samething`',
'`firt_name`',
'table2.fieldname',
'COUNT(table2.fieldname) AS `grouping`'
])
.join('table2',['table2.idBaseTable','=','base_table.id'],'LEFT JOIN')
.groupBy('`table2.idBaseTable`')
.orderBy('`country_name`')
.limit(10)
.offset(10); //or go right into .execute()
query.execute()
.then(function(results){
console.log("It's like christmas!", results);
})
.catch(function(err){
console.log(err);
});
##To do
FAQs
A lightweight Promise-based Query generator to be used with node-mysql-helper.
The npm package node-mysql-query receives a total of 3 weekly downloads. As such, node-mysql-query popularity was classified as not popular.
We found that node-mysql-query 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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.