
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.
mysql-dialect
Advanced tools
Provides a MySql Query Builder. This version contains MySql CRUD operations. Each function returns a query string ready to use with a MySql connection provider like MSQL2 Package.
Is a MySql Database ease query builder. Provides a MySql Query Builder. This version contains MySql CRUD operations. Each function returns a query string ready to use with a MySql connection provider like mysql2 Package.
CRUD operations examples supported:
const { SELECT, INSERT, DELETE, UPDATE, SELECTALL } = require("mysql-dialect");
Getting started:
const { SELECT } = require("mysql-dialect");
//Return `SELECT user_name,email FROM users`
const query = SELECT("user_name,email).FROM("users").get();
Use with mysql2:
//Find mysql2 configuration at own documentation.
const mysql = require("mysql2");
const pool = mysql.createPool(...);
//Use a query string instead raw string.
const result = await pool.query(query);
FAQs
Provides a MySql Query Builder. This version contains MySql CRUD operations. Each function returns a query string ready to use with a MySql connection provider like MSQL2 Package.
We found that mysql-dialect 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.