
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
buildmsql is a builder sql for mariadb connector
buildmsql helps you build sql for mariadb connector
Documentation - https://webigorkiev.github.io/buildmsql/
npm i buildmsql
import {Query, QueryOptions} from "buildmsql";
const db = new Query(opt as {
// QueryOpinions
// Debug level: 0 - no debag info, 1 - _buildmsqlQueries text and timing
debug?: 0|1,
// Used for manticore search
nativeTransactions?: boolean,
// pattern *string* regex pattern to select pools. Example, `"slave*"`. default `'*'`
pattern?:string,
// *string* pools selector. Can be 'RR' (round-robin),
// 'RANDOM' or 'ORDER' (use in sequence = always use first pools unless fails)
selector?: "RR"|"RANDOM"|"ORDER"
})
const connection = await db.createConnection({
host: 'mydb.com',
user:'myUser',
password: 'myPwd'
// mariadb.ConnectionConfig
});
import {Query, QueryOptions} from "buildmsql";
const db = new Query({
// QueryOpinions
})
const pool = db.createPool({
// mariadb.PoolConfig
})
FAQs
buildmsql build sql for mariadb connector
The npm package buildmsql receives a total of 4 weekly downloads. As such, buildmsql popularity was classified as not popular.
We found that buildmsql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.

Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.

Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.