FTaskRunner-MySql provides fluent MySQL tasks for the FTaskRunner task execution library. Version 1.0.5 is the latest, released as an initial stable version. It enables building MySQL queries and operations as composable tasks within the FTaskRunner pipeline. Key differentiators include a fluent API for defining MySQL tasks, integration with FTaskRunner's sync/async execution, and support for Node.js. The package is minimal and focuses on database operations, with no additional dependencies beyond FTaskRunner and a MySQL driver. Release cadence is low; this is a niche library for users of FTaskRunner.
npm install ftaskrunner-mysqlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a MySQL task with connection config, runs a simple SELECT query, and adds it to an FTaskRunner pipeline.
Update constructor call to use config object.
Install mysql2 and ensure it is available.
Create a new MySqlTask for each independent query pipeline.
Ensure all config is passed in the constructor.
Run 'npm install mysql2' in your project.
Use 'import { MySqlTask } from 'ftaskrunner-mysql'' and ensure version >= 1.0.0.Check MYSQL_USER, MYSQL_PASSWORD environment variables or constructor arguments.