0.1.1 • Published 6 years ago

knex-case-converter-plugin v0.1.1

Weekly downloads
92
License
GPL-3.0
Repository
github
Last release
6 years ago

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

0.1.1

6 years ago

0.1.0

6 years ago