├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── tests ├── _create_test_db.js ├── connection_error.test.js ├── perf.test.js ├── server ├── index.js └── server_example.js └── test_db_setup.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/package.json -------------------------------------------------------------------------------- /tests/_create_test_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/_create_test_db.js -------------------------------------------------------------------------------- /tests/connection_error.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/connection_error.test.js -------------------------------------------------------------------------------- /tests/perf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/perf.test.js -------------------------------------------------------------------------------- /tests/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/server/index.js -------------------------------------------------------------------------------- /tests/server/server_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/server/server_example.js -------------------------------------------------------------------------------- /tests/test_db_setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/hapi-postgres-connection/HEAD/tests/test_db_setup.sql --------------------------------------------------------------------------------