postgoose

0.0.1 • Public • Published

Postgoose

   ___          _                              __  __    
  / _ \___  ___| |_ __ _  ___   ___  ___  ___  \ \/ _\   
 / /_)/ _ \/ __| __/ _` |/ _ \ / _ \/ __|/ _ \  \ \ \    
/ ___/ (_) \__ \ || (_| | (_) | (_) \__ \  __/\_/ /\ \   
\/    \___/|___/\__\__, |\___/ \___/|___/\___\___/\__/   
                   |___/                                 

Mongoose-like postgresql library. Minimalistic database feature for the moment :

  • CRUD
  • some hooks

### Install

npm i postgoose

Connect to the database

const conf = {
  "host"     : "localhost",
  "port"     : 5432,
  "database" : "testdb",
  "user"     : "root",
  "password" : "root"
}

postgoose.connect(conf, () => {
  console.log('connected !');
})

### Copyright

LICENCE MIT

Copyright(c) 2018 Alexandre PENOMBRE <aluzed_AT_gmail.com>

/postgoose/

    Package Sidebar

    Install

    npm i postgoose

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Unpacked Size

    143 kB

    Total Files

    44

    Last publish

    Collaborators

    • aluzed