psql.service.js 311 B

123456789101112131415161718
  1. const initOptions = {
  2. // initialization options;
  3. };
  4. const pgp = require('pg-promise')(initOptions);
  5. var dbConnection
  6. // const db = ()=>{
  7. let cn = "postgresql://dev:666@dev.fmode.cn:5432/dev";
  8. if(!dbConnection){
  9. dbConnection = pgp(cn);
  10. }
  11. // return dbConnection
  12. // }
  13. module.exports = dbConnection