1.0.1 • Published 5 years ago

egg-btfinflux v1.0.1

Weekly downloads
8
License
-
Repository
-
Last release
5 years ago

egg-influx

基于 node-influx 封装的influx的egg插件,用于操作InfluxDB数据库。

安装

$ npm i egg-btfinflux --save

配置

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

// {app_root}/config/config.{env}.js
config.influx = {
  host: '127.0.0.1',
  port: 8086,
  database: '<database name>',
  username: '<username>',
  password: '<password>',
}

更多用法,参考 node-influx的文档