From d42770ae2ca4229d3ac5da0fbb2a5a9709a51537 Mon Sep 17 00:00:00 2001 From: John Fawcett Date: Fri, 10 Jun 2016 21:25:56 -0500 Subject: [PATCH] Demonstrate that pg-pool exports Pool constructor --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 18a4b524..edcb79d3 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ npm i pg-pool pg to use pg-pool you must first create an instance of a pool ```js +const Pool = require('pg-pool') + //by default the pool uses the same //configuration as whatever `pg` version you have installed const pool = new Pool()