From 858d4de243a7863eccf5ec1f0d128c9441852b08 Mon Sep 17 00:00:00 2001 From: Steven Wexler Date: Tue, 3 Jun 2014 22:51:12 -0400 Subject: [PATCH 1/2] Added Beta message --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 39c4fc1..5d50f55 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,14 @@ exceptions.js ====================== +exceptions.js is currently in Beta and looking for users! Please file issues or feedback in the issues section or by emailing steven.m.wexler@gmail.com. Also, please email steven.m.wexler@gmail.com if you'd like to receive updates about this project including when it is released out of Beta. + exceptions.js enhances Javscript error handling by providing a more comprehensive API for errors and by extending functionality of window.onerror. exceptions.js is modeled off of C#'s exception infrastructure and provides the ability to record stacktraces, screenshots, inner exceptions with Javascript errors. It also provides the ability to make post request that contain serialized exceptions so you can record and report Javascript errors. Basic setup and usage ---------------------- ```javascript +//Once you've included exceptions.js on your page: + //Setup the exceptions handler to report errors when //you call Exception.report() or window.onerror executes exeptions.handler From 00262af8c3ebf986565fc28597b6b05b8248bbf0 Mon Sep 17 00:00:00 2001 From: Steven Wexler Date: Tue, 3 Jun 2014 22:51:45 -0400 Subject: [PATCH 2/2] Small change to README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d50f55..94b60a4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ exceptions.js ====================== -exceptions.js is currently in Beta and looking for users! Please file issues or feedback in the issues section or by emailing steven.m.wexler@gmail.com. Also, please email steven.m.wexler@gmail.com if you'd like to receive updates about this project including when it is released out of Beta. +_exceptions.js is currently in Beta and looking for users! Please file issues or feedback in the issues section or by emailing steven.m.wexler@gmail.com. Also, please email steven.m.wexler@gmail.com if you'd like to receive updates about this project including when it is released out of Beta._ exceptions.js enhances Javscript error handling by providing a more comprehensive API for errors and by extending functionality of window.onerror. exceptions.js is modeled off of C#'s exception infrastructure and provides the ability to record stacktraces, screenshots, inner exceptions with Javascript errors. It also provides the ability to make post request that contain serialized exceptions so you can record and report Javascript errors.