
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
universal-query
Advanced tools
This is a pure javascript query builder for NodeJS supporting mysql and mongo out of the box.
An pure javascript query builder for various databases.
Currently supported:
The API is for all the query builders the same.
This is done so you can easily change the database type, and the queries work like normal.
Although keep the database limitations in mind.
All example can be used in MySQL and MongoDB only by changing the getType value. Supported values are:
Building a simple mysql select query.
var universal_query = require('universal-query');
var mysql = universal_query.getType('mysql');
var sql = mysql.select().table('foo').toQuery();
// SELECT * FROM `foo`;
A more advanced select query
var universal_query = require('universal-query');
var mysql = universal_query.getType('mysql');
var sql = mysql.select().table('foo', 'bar').where('bar.foo_bar', '=', 1).toQuery();
// SELECT * FROM `foo` AS `bar` WHERE `bar`.`foo_bar` = 1;
An insert query
var universal_query = require('universal-query');
var mysql = universal_query.getType('mysql');
var sql = mysql.insert().table('foo').set('foo', 'bar').toQuery();
// INSERT INTO `foo` (`foo`) VALUES ('bar');
An update query
var universal_query = require('universal-query');
var mysql = universal_query.getType('mysql');
var sql = mysql.update().table('foo').set('foo', 'bar').where('foo.foo_bar', '=', 1).toQuery();
// UPDATE `foo` SET `foo`='bar' WHERE `foo`.`foo_bar` = 1;
FAQs
This is a pure javascript query builder for NodeJS supporting mysql and mongo out of the box.
We found that universal-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 MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.