├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── base.js ├── client.js ├── exception.js └── server.js └── tests └── health.test.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/package.json -------------------------------------------------------------------------------- /src/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/src/base.js -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/src/client.js -------------------------------------------------------------------------------- /src/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/src/exception.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/src/server.js -------------------------------------------------------------------------------- /tests/health.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-microservices/dot-rest/HEAD/tests/health.test.js --------------------------------------------------------------------------------