knex-case-converter-plugin

0.1.1 • Public • Published

knex-case-converter-plugin

Build Status Coverage Downloads Downloads npm version dependencies dev dependencies License

convert snake_case column names to camelCase on query and the reverse when using parameters

Getting Started

Install it via npm:

npm install knex-case-converter-plugin

Or Yarn it:

yarn add knex-case-converter-plugin

And include in your project:

import plugin from 'knex-case-converter-plugin';
 
//sample
let knexConfig = {
  "client": "mysql2",
  "debug": true,
  "connection": {
    "host": "localhost",
    "user": "root",
    "password": "root",
    "database": "db_test"
  }
}
 
Object.assign(knexConfig, plugin)
// OR
//knexConfig.wrapIdentifier = plugin.wrapIdentifier;
//knexConfig.postProcessResponse = plugin.postProcessResponse;
 

License

GPL-3.0

/knex-case-converter-plugin/

    Package Sidebar

    Install

    npm i knex-case-converter-plugin

    Weekly Downloads

    62

    Version

    0.1.1

    License

    GPL-3.0

    Unpacked Size

    116 kB

    Total Files

    8

    Last publish

    Collaborators

    • mridul.khanal