UNPKG

node-pg-connection-pool

Version:

Connection pool for node-postgres with generic-pool support

148 lines (112 loc) 5.81 kB
[![npm version](https://badge.fury.io/js/node-pg-connection-pool.svg)](https://badge.fury.io/js/node-pg-connection-pool) [![Build Status](https://travis-ci.org/pasupulaphani/node-pg-connection-pool.svg?branch=master)](https://travis-ci.org/pasupulaphani/node-pg-connection-pool) [![Coverage Status](https://coveralls.io/repos/github/pasupulaphani/node-pg-connection-pool/badge.svg?branch=master)](https://coveralls.io/github/pasupulaphani/node-pg-connection-pool?branch=master) [![Dependency Status](https://www.versioneye.com/user/projects/58780c851fe8e3003e7a83b2/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/58780c851fe8e3003e7a83b2) [![Gratipay donate button](https://img.shields.io/badge/gratipay-donate-yellow.svg?style=flat-square)](https://gratipay.com/simple-redis-store/) # node-pg-connection-pool [![See on Github](https://github.com/themes/tactile/images/octocat-icon.png)](https://github.com/pasupulaphani/node-pg-connection-pool) Simplistic node postgres connection pool ready can scale with generic-pool support ## Prerequisites ```node >= 4``` This module requires nodejs v4 or above as it has dependencies on es6 components such as Map, Set, Promise etc. ### Getting started ``` npm install node-pg-connection-pool ``` #### Usage - Seemless execution of commands. ``` var PgPool = require("node-pg-connection-pool"); var pool = new PgPool(); const result = await pool.query("SELECT $1::int AS number;", ["1"]); ``` - Want postgres raw connection? you got it ``` pool.acquire() .then(client => { // Do some work // At the end release the conn back to the pool pool.release(client) }); ``` #### API - PgPool([options]) ##### `options` object properties <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>name</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last"> <p>Name your pool</p> </td> </tr> <tr> <td class="name"><code>pgOptions</code></td> <td class="type"> <span class="param-type">object</span> </td> <td class="description last"> <p>opts from <a href="https://github.com/brianc/node-postgres/wiki/Client#parameters">node-postgres#client-parameters</a></p> </td> </tr> <tr> <td class="name"><code>pgNative</code></td> <td class="type"> <span class="param-type">boolean</span> </td> <td class="description last"> <p>Use the native bindings. Install <code>pg-native</code> in your app before setting this to true.</p> </td> </tr> <tr> <td class="name"><code>poolOptions</code></td> <td class="type"> <span class="param-type">object</span> </td> <td class="description last"> <p>opts from <a href="https://github.com/coopernurse/node-pool#createpool">node-pool#createpool</a></p> </td> </tr> <tr> <td class="name"><code>logger</code></td> <td class="type"> <span class="param-type">object</span> </td> <td class="description last"> <p>Inject your custom logger</p> </td> </tr> </tbody> </table> ### Run tests sh test.sh ## Contribute [Discover how you can contribute by heading on over to the `CONTRIBUTING.md` file.](https://github.com/pasupulaphani/node-pg-connection-pool/blob/master/CONTRIBUTING.md) ## Backers ### Maintainers These amazing people are maintaining this project: * [Phani](https://github.com/pasupulaphani) — [view contributions](https://github.com/pasupulaphani/node-pg-connection-pool/commits?author=pasupulaphani) ### Sponsors No sponsors yet! Will you be the first? [![Patreon donate button](https://img.shields.io/badge/patreon-donate-yellow.svg)](http://patreon.com/phaninder "Donate to this project using Patreon") [![Gratipay donate button](https://img.shields.io/badge/gratipay-donate-yellow.svg)](https://gratipay.com/~pasupulaphani/ "Donate weekly to this project using Gratipay") [![Flattr donate button](https://img.shields.io/badge/flattr-donate-yellow.svg)](https://flattr.com/profile/pasupulaphani "Donate to this project using Flattr") <!-- [![PayPal donate button](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://phaninder.com/paypal "Donate to this project using Paypal") --> <!-- [![Bitcoin donate button](https://img.shields.io/badge/bitcoin-donate-yellow.svg)](https://phaninder.com/bitcoin "Donate once-off to this project using Bitcoin") --> <!-- [![Wishlist browse button](https://img.shields.io/badge/wishlist-donate-yellow.svg)](https://phaninder.com/wishlist "Buy an item on our wishlist for us") --> <a href='https://pledgie.com/campaigns/33355'><img alt='Click here to lend your support to: simple-node-redis-cache and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/33355.png?skin_name=chrome' border='0' ></a> ### Contributors These amazing people have contributed to/reviewed this project: * [Oliver Brooks](https://github.com/oliverbrooks) [Discover how you can contribute by heading on over to the `CONTRIBUTING.md` file.](https://github.com/pasupulaphani/node-pg-connection-pool/blob/master/CONTRIBUTING.md) <br /> <script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');ga('create', 'UA-57413413-7', 'auto');ga('send', 'pageview');</script> ---