├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── kibana_error_log_entry.png ├── kibana_success_log_entry.png └── logstash.conf ├── lib └── koa-json-logger.js ├── log └── .gitignore ├── package.json └── test └── koa-json-logger.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/README.md -------------------------------------------------------------------------------- /examples/kibana_error_log_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/examples/kibana_error_log_entry.png -------------------------------------------------------------------------------- /examples/kibana_success_log_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/examples/kibana_success_log_entry.png -------------------------------------------------------------------------------- /examples/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/examples/logstash.conf -------------------------------------------------------------------------------- /lib/koa-json-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/lib/koa-json-logger.js -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/package.json -------------------------------------------------------------------------------- /test/koa-json-logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudijs/koa-json-logger/HEAD/test/koa-json-logger.spec.js --------------------------------------------------------------------------------