├── .gitignore ├── .travis.yml ├── README.md ├── grunt.js ├── package.json ├── tests ├── mocha.css ├── mocha.js └── recursion.html └── tracekit.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | TraceKit.iml 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | TraceKit - Cross browser stack traces. 2 | ===================================== 3 | 4 | [](https://travis-ci.org/occ/TraceKit) 5 | 6 | ### Supports all major browsers, from IE6 to Opera, the Andriod webiew and everywhere in between. 7 | 8 | Not all browsers support stack traces on error objects, but TraceKit squeezes 9 | out as much useful information as possible and normalizes it. 3kB minified + gzipped 10 | 11 | 12 | ## Install 13 | 14 | ``` 15 | bower install tracekit 16 | ``` 17 | This places TraceKit at `components/tracekit/tracekit.js`. Install [bower](http://twitter.github.com/bower/): `npm install bower -g`, download npm with Node: http://nodejs.org 18 | 19 | Then include the ` 10 | 11 | 12 | 50 | 51 | 60 | 61 |
62 |