1.0.6 • Published 5 years ago

egg-knex-promise v1.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

egg-knex

NPM version build status Test coverage Known Vulnerabilities npm download

knex plugin for egg

Install

$ npm i egg-knex-promise --save

Usage

// {app_root}/config/plugin.js
exports.knex = {
  enable: true,
  package: 'egg-knex-promise',
};

Configuration

// {app_root}/config/config.default.js
exports.knex = {
      client: 'sqlite3',
      connection: {
        filename: './test.db3',
      },
};

see Knex.js for more detail.

Example

// {app_root}/controller/home.js
class HomeController extends Controller {
    async index() {
        const data = await this.app.knex('user').select('*');
        this.ctx.body = data;
    }
}

Questions & Suggestions

Please open an issue here.

License

MIT

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago