├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── lib ├── hooks.js └── index.js ├── package.json ├── readme.md └── test ├── api-delete.js ├── api-get-count.js ├── api-get-list.js ├── api-get.js ├── api-post.js ├── api-put.js ├── helper-for-hooks.js ├── helper.js ├── hooks.js ├── initialization.js └── ssl ├── cert-generation ├── certificate.pem ├── certrequest.csr └── privatekey.pem /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .idea 4 | package-lock.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/LICENSE -------------------------------------------------------------------------------- /lib/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/lib/hooks.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/readme.md -------------------------------------------------------------------------------- /test/api-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-delete.js -------------------------------------------------------------------------------- /test/api-get-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-get-count.js -------------------------------------------------------------------------------- /test/api-get-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-get-list.js -------------------------------------------------------------------------------- /test/api-get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-get.js -------------------------------------------------------------------------------- /test/api-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-post.js -------------------------------------------------------------------------------- /test/api-put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/api-put.js -------------------------------------------------------------------------------- /test/helper-for-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/helper-for-hooks.js -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/hooks.js -------------------------------------------------------------------------------- /test/initialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/initialization.js -------------------------------------------------------------------------------- /test/ssl/cert-generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/ssl/cert-generation -------------------------------------------------------------------------------- /test/ssl/certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/ssl/certificate.pem -------------------------------------------------------------------------------- /test/ssl/certrequest.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/ssl/certrequest.csr -------------------------------------------------------------------------------- /test/ssl/privatekey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acarl/pg-restify/HEAD/test/ssl/privatekey.pem --------------------------------------------------------------------------------