Tired of writing repetitive MySQL code in Node.js? Here’s a simple helper I built! - mysql2-helper-lite

I just published a small utility package called mysql2-helper-lite to simplify our work with mysql2/promise. It wraps common operations like insert, getOne, updateById, etc. — so we can avoid writing repetitive SQL boilerplate and keep our code cleaner and DRY. ✅ Usage is simple: const db = createDbHelper(pool); const user = await db.getOne('SELECT * FROM users WHERE email = ?', ['abc@example.com']);

Mar 30, 2025 - 09:21
 0
Tired of writing repetitive MySQL code in Node.js? Here’s a simple helper I built! - mysql2-helper-lite

I just published a small utility package called mysql2-helper-lite to simplify our work with mysql2/promise.

It wraps common operations like insert, getOne, updateById, etc. — so we can avoid writing repetitive SQL boilerplate and keep our code cleaner and DRY.

✅ Usage is simple:

const db = createDbHelper(pool);
const user = await db.getOne('SELECT * FROM users WHERE email = ?', ['abc@example.com']);