knex-case-converter-plugin

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

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
knex-case-converter-plugin
490.1.15 years ago5 years agoMinified + gzip package size for knex-case-converter-plugin in KB

Readme

knex-case-converter-plugin
Build Status Coverage Downloads Downloads npm version dependencies dev dependencies License
convert snakecase 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