From a768756482c40f63cbffff8a09bd2ed6999e4cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD?= Date: Tue, 25 Oct 2016 13:51:05 +1000 Subject: [PATCH 1/5] Create package.json --- package.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..acac7dd --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "logerr", + "main": "logger.js", + "homepage": "https://github.com/i-break-codes/logerr", + "authors": [ + "i-break-codes " + ], + "description": "Provides JavaScript errors in readable format. Also allows developers to log exceptions remotely by sending a post reqest.", + "keywords": [ + "javascript", + "debug", + "errorhandling", + "log", + "errorlogging", + "remotelogging", + "exceptionhandling", + "exceptions" + ], + "license": "MIT" +} From d956ffcb5542df7629fdb8ed3ebd5b6b4e4a4b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD?= Date: Tue, 25 Oct 2016 13:55:13 +1000 Subject: [PATCH 2/5] Update package.json --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index acac7dd..8f2817b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,7 @@ { "name": "logerr", + "version": "0.1.0", + "repository": "https://github.com/Grawl/logerr.git", "main": "logger.js", "homepage": "https://github.com/i-break-codes/logerr", "authors": [ From f726f8c79b990d5fbd6239b5acc67fab9e645c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD?= Date: Tue, 25 Oct 2016 13:57:38 +1000 Subject: [PATCH 3/5] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8f2817b..abb43e0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "logerr", "version": "0.1.0", - "repository": "https://github.com/Grawl/logerr.git", + "repository": "https://github.com/i-break-codes/logerr.git", "main": "logger.js", "homepage": "https://github.com/i-break-codes/logerr", "authors": [ From 4becc6276b6b5e63b38b968cd57c2a4a1a37036d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD?= Date: Tue, 25 Oct 2016 14:00:06 +1000 Subject: [PATCH 4/5] Update README.md --- README.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d1e3dba..b06dce5 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,19 @@ Provides JavaScript error details in a readable format. You can log these errors --- -#### Install via :- +#### Install: + +#### [npm](http://npmjs.com) + +```bash +npm install i-break-codes/logerr +``` #### [Bower](https://bower.io/) -> bower install logerr + +```bash +bower install logerr +``` #### Manually @@ -89,10 +98,10 @@ remoteSettings: { //Object {}, required if remoteLogging is set to t --- #### Roadmap -- [✓] Enable/Disable detailedErrors mode in console. -- [✓] Remote logging by sending post request -- [✓] Cross browser support (Partially fixed) -- [✗] Add notifications on the page if any exception. (in progress) +- [x] Enable/Disable detailedErrors mode in console. +- [x] Remote logging by sending post request +- [x] Cross browser support (Partially fixed) +- [ ] Add notifications on the page if any exception. (in progress) ...will add some more stuff to make debugging easy. From 5dbcc4edcb33a142421ed72eadb40fe60d801d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD?= Date: Thu, 27 Oct 2016 11:29:44 +1000 Subject: [PATCH 5/5] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index abb43e0..428f27a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "logerr", "version": "0.1.0", "repository": "https://github.com/i-break-codes/logerr.git", - "main": "logger.js", + "main": "logerr.js", "homepage": "https://github.com/i-break-codes/logerr", "authors": [ "i-break-codes "