
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
A no-frills chainable/fluent interface for constructing mutable MySQL queries with data binding/escapement.
#queryize.js
A no-frills chainable/fluent interface for constructing mutable MySQL queries with data binding/escapement.
##Installation
NPM: npm install queryize
##Usage
In Node or another CommonJS environment:
var queryize = require('queryize');
var query = queryize().select();
var select = require('queryize').select;
var query = select();
Visit queryizejs.com for documentation.
##Examples
var select = require('queryize').select;
var q = select()
.from('users', 'u')
.innerJoin('passwords', {alias: 'p', on: {'u.id':'p.user_id'}})
.where({'u.email': 'user@example.com'})
.columns('u.id', 'p.hash')
.compile();
//q.query contains SELECT u.id, p.hash FROM users u INNER JOIN passwords p ON (u.id = p.user_id) WHERE u.email = ?
//q.data contains ['user@example.com']
var queryize = require('queryize');
var q = queryize()
.insert().into('users')
.set({name: 'John Doe', email: 'user@example.com'})
.compile();
//q.query contains INSERT INTO users SET u.name = ?, u.email = ?
//q.data contains ['John Doe', 'user@example.com']
var queryize = require('queryize');
var q = queryize()
.update().table('users')
.set({name: 'John Doe', email: 'user@example.com'})
.where({'u.id':1})
.compile();
//q.query contains UPDATE users SET u.name = ?, u.email = ? WHERE u.id = ?
//q.data contains ['John Doe', 'user@example.com', 1]
var queryize = require('queryize');
var q = queryize()
.deleteFrom('users')
.where({'u.id':1})
.compile();
//q.query contains DELETE FROM users WHERE u.id = ?
//q.data contains ['John Doe', 'user@example.com', 1]
##Running Unit Tests
From inside the repository root, run npm install
to install the node-tap dependency.
Run npm test
to execute the complete test suite.
FAQs
A no-frills chainable/fluent interface for constructing mutable MySQL queries with data binding/escapement.
The npm package queryize receives a total of 26 weekly downloads. As such, queryize popularity was classified as not popular.
We found that queryize 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 ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.