├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── Ouch.js ├── README.md ├── docs ├── api-docs.md └── index.md ├── examples ├── example-comments.js ├── example-express.js └── example-jsonAndPretty.js ├── exception ├── Inspector.js ├── formatter.js └── frame.js ├── handler ├── CallbackHandler.js ├── Handler.js ├── JsonResponseHandler.js └── PrettyPageHandler.js ├── mkdocs.yml ├── package.json ├── resources ├── css │ ├── ouch.blue.css │ └── ouch.orange.css ├── js │ ├── ouch.base.js │ └── zepto.min.js └── views │ ├── envDetails.ejs │ ├── frameCode.ejs │ ├── frameList.ejs │ ├── header.ejs │ └── layout.ejs ├── test ├── fixtures │ └── template.ejs ├── mocha.opts └── unit │ ├── exception │ ├── Inspector.spec.js │ ├── formatter.spec.js │ └── frame.spec.js │ ├── handler │ ├── JsonResponseHandler.spec.js │ └── prettyPageHandler.spec.js │ ├── ouch.spec.js │ └── util │ └── templateHelper.spec.js └── util └── TemplateHelper.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/LICENSE -------------------------------------------------------------------------------- /Ouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/Ouch.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/README.md -------------------------------------------------------------------------------- /docs/api-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/docs/api-docs.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /examples/example-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/examples/example-comments.js -------------------------------------------------------------------------------- /examples/example-express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/examples/example-express.js -------------------------------------------------------------------------------- /examples/example-jsonAndPretty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/examples/example-jsonAndPretty.js -------------------------------------------------------------------------------- /exception/Inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/exception/Inspector.js -------------------------------------------------------------------------------- /exception/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/exception/formatter.js -------------------------------------------------------------------------------- /exception/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/exception/frame.js -------------------------------------------------------------------------------- /handler/CallbackHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/handler/CallbackHandler.js -------------------------------------------------------------------------------- /handler/Handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/handler/Handler.js -------------------------------------------------------------------------------- /handler/JsonResponseHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/handler/JsonResponseHandler.js -------------------------------------------------------------------------------- /handler/PrettyPageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/handler/PrettyPageHandler.js -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/package.json -------------------------------------------------------------------------------- /resources/css/ouch.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/css/ouch.blue.css -------------------------------------------------------------------------------- /resources/css/ouch.orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/css/ouch.orange.css -------------------------------------------------------------------------------- /resources/js/ouch.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/js/ouch.base.js -------------------------------------------------------------------------------- /resources/js/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/js/zepto.min.js -------------------------------------------------------------------------------- /resources/views/envDetails.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/views/envDetails.ejs -------------------------------------------------------------------------------- /resources/views/frameCode.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/views/frameCode.ejs -------------------------------------------------------------------------------- /resources/views/frameList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/views/frameList.ejs -------------------------------------------------------------------------------- /resources/views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/views/header.ejs -------------------------------------------------------------------------------- /resources/views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/resources/views/layout.ejs -------------------------------------------------------------------------------- /test/fixtures/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/fixtures/template.ejs -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/unit/exception/Inspector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/exception/Inspector.spec.js -------------------------------------------------------------------------------- /test/unit/exception/formatter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/exception/formatter.spec.js -------------------------------------------------------------------------------- /test/unit/exception/frame.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/exception/frame.spec.js -------------------------------------------------------------------------------- /test/unit/handler/JsonResponseHandler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/handler/JsonResponseHandler.spec.js -------------------------------------------------------------------------------- /test/unit/handler/prettyPageHandler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/handler/prettyPageHandler.spec.js -------------------------------------------------------------------------------- /test/unit/ouch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/ouch.spec.js -------------------------------------------------------------------------------- /test/unit/util/templateHelper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/test/unit/util/templateHelper.spec.js -------------------------------------------------------------------------------- /util/TemplateHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorrajs/Ouch/HEAD/util/TemplateHelper.js --------------------------------------------------------------------------------