
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
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.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.