Asynchronous MySQL bindings for Node.js using libmysqlclient C library. Version 1.6.0 is the latest. Provides all general connection/query functions from MySQL C API with partial prepared statement support. Connect, query, and fetchAll are async. Requires libmysqlclient-dev system package to build. Notable for using raw libmysqlclient rather than pure JavaScript implementation; performance-focused with async querySend. Maintained since 2010 with over 10 contributors.
npm install mysql-libmysqlclientNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates connecting to MySQL and executing a simple async SELECT query.
Install libmysqlclient-dev via apt-get (Debian) or yum install mysql-devel (CentOS).
Use a maintained MySQL driver like mysql2 or mysql instead.
Use promisify from util to wrap async calls.
Install libmysqlclient-dev first, then npm install mysql-libmysqlclient.
Use require() instead of import.
No dependency data recorded yet.