├── .dockerignore ├── .eslintrc ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── bus.js ├── db.js ├── handlers │ ├── index.js │ └── sampleMessageHandler.js ├── index.js ├── lib.js ├── logger.js ├── models │ └── sampleModel.js └── responders │ ├── index.js │ └── sampleRpcResponder.js ├── index.js └── package.json /.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/README.md -------------------------------------------------------------------------------- /app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/bus.js -------------------------------------------------------------------------------- /app/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/db.js -------------------------------------------------------------------------------- /app/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/handlers/index.js -------------------------------------------------------------------------------- /app/handlers/sampleMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/handlers/sampleMessageHandler.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/index.js -------------------------------------------------------------------------------- /app/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/lib.js -------------------------------------------------------------------------------- /app/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/logger.js -------------------------------------------------------------------------------- /app/models/sampleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/models/sampleModel.js -------------------------------------------------------------------------------- /app/responders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/responders/index.js -------------------------------------------------------------------------------- /app/responders/sampleRpcResponder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/app/responders/sampleRpcResponder.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/microservice-template/HEAD/package.json --------------------------------------------------------------------------------