A JSON index of known variables, statuses, and system variables from the MariaDB and MySQL Knowledge Bases. Current stable version is 1.3.0, updated frequently to reflect new database releases. Provides a structured dataset that aggregates entries from both MariaDB and MySQL official documentation, enabling automated lookup and validation of database configuration parameters. Useful for tooling, validation, and documentation generation.
npm install mariadb-mysql-kbsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to import the index, get total count, find a specific entry by name, and filter by source (MariaDB vs MySQL).
Switch to `import mariadbMysqlKbs from 'mariadb-mysql-kbs'` and ensure your project uses ESM (type: 'module' in package.json or .mjs extension).
If you used `import kbs from 'mariadb-mysql-kbs'; console.log(kbs.data);` update to `console.log(kbs);`.
When looking up a variable, consider filtering by source (`source: 'mariadb'` or `source: 'mysql'`) if you need database-specific information.
Add `"type": "module"` to your package.json, or rename the file to .mjs, or dynamically import: `const mariadbMysqlKbs = await import('mariadb-mysql-kbs')`.Use `import mariadbMysqlKbs from 'mariadb-mysql-kbs'` (default import) or use `import * as kbs from 'mariadb-mysql-kbs'` for namespace.
Update code to access the array directly: `const entries = mariadbMysqlKbs;` instead of `const entries = mariadbMysqlKbs.data;`.
No dependency data recorded yet.