errorreporter 1.0.340 → 1.0.341
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -13
- package/readme.md +26 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "errorreporter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.341",
|
|
4
4
|
"description": "Error reporter for client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -50,26 +50,26 @@
|
|
|
50
50
|
"watch": "weboptimizer build --watch"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@babel/eslint-parser": "^7.
|
|
54
|
-
"@babel/plugin-transform-proto-to-assign": "^7.
|
|
55
|
-
"@babel/runtime": "^7.29.
|
|
53
|
+
"@babel/eslint-parser": "^7.29.7",
|
|
54
|
+
"@babel/plugin-transform-proto-to-assign": "^7.29.7",
|
|
55
|
+
"@babel/runtime": "^7.29.7",
|
|
56
56
|
"@eslint/js": "^10.0.1",
|
|
57
57
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
58
58
|
"@types/jsdom": "^28.0.3",
|
|
59
|
-
"@types/node": "^25.9.
|
|
59
|
+
"@types/node": "^25.9.2",
|
|
60
60
|
"@types/webpack-env": "^1.18.8",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
62
|
-
"@typescript-eslint/parser": "^8.
|
|
63
|
-
"clientnode": "^4.0.
|
|
64
|
-
"eslint": "^10.4.
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^8.60.1",
|
|
62
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
63
|
+
"clientnode": "^4.0.1420",
|
|
64
|
+
"eslint": "^10.4.1",
|
|
65
65
|
"eslint-config-google": "^0.14.0",
|
|
66
|
-
"eslint-plugin-jsdoc": "^
|
|
66
|
+
"eslint-plugin-jsdoc": "^63.0.2",
|
|
67
67
|
"jest": "^30.4.2",
|
|
68
68
|
"jsdoc": "^4.0.5",
|
|
69
69
|
"node-fetch": "^3.3.2",
|
|
70
|
-
"typescript-eslint": "^8.
|
|
71
|
-
"ua-parser-js": "^2.0.
|
|
72
|
-
"web-documentation": "^1.0.
|
|
70
|
+
"typescript-eslint": "^8.60.1",
|
|
71
|
+
"ua-parser-js": "^2.0.10",
|
|
72
|
+
"web-documentation": "^1.0.29",
|
|
73
73
|
"weboptimizer": "^3.0.24",
|
|
74
74
|
"webpack-dev-server": "^5.2.4"
|
|
75
75
|
},
|
package/readme.md
CHANGED
|
@@ -6,7 +6,7 @@ Copyright Torben Sickert (info["~at~"]torben.website) 16.12.2012
|
|
|
6
6
|
License
|
|
7
7
|
-------
|
|
8
8
|
|
|
9
|
-
This library written by Torben Sickert
|
|
9
|
+
This library written by Torben Sickert stands under a creative commons naming
|
|
10
10
|
3.0 unported license. See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
11
11
|
endregion -->
|
|
12
12
|
|
|
@@ -28,17 +28,37 @@ Project status
|
|
|
28
28
|
[](https://github.com/thaibault/errorreporter/actions/workflows/deploy-web-documentation.yaml)
|
|
29
29
|
[](https://torben.website/errorreporter)
|
|
30
30
|
|
|
31
|
+
<!--|deDE:Installation-->
|
|
32
|
+
Installation
|
|
33
|
+
------------
|
|
34
|
+
|
|
35
|
+
You can install via package manager, simply download the compiled version as
|
|
36
|
+
zip file here and inject or request via cdn in HTML:
|
|
37
|
+
<!--deDE:
|
|
38
|
+
Sie können das Paket über den Paketmanager installieren oder einfach die
|
|
39
|
+
kompilierte Version als ZIP-Datei hier herunterladen und in HTML einbinden
|
|
40
|
+
oder über ein CDN abrufen:
|
|
41
|
+
-->
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npm install errorreporter
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
<!--showExample-->
|
|
48
|
+
|
|
49
|
+
```HTML
|
|
50
|
+
<script src="https://unpkg.com/errorreporter@latest/index.js"></script>
|
|
51
|
+
```
|
|
52
|
+
|
|
31
53
|
Use case
|
|
32
54
|
--------
|
|
33
55
|
|
|
34
|
-
|
|
56
|
+
A client side error reporter written in JavaScript. Embed this code into your
|
|
35
57
|
website markup and get an ajax call to a specified resource for each distinct
|
|
36
|
-
error with detailed client
|
|
58
|
+
error with detailed client information. You can filter each non-supported
|
|
37
59
|
client technology to avoid getting error reports from environments which aren't
|
|
38
60
|
expected.
|
|
39
61
|
|
|
40
62
|
```HTML
|
|
41
|
-
|
|
42
|
-
src="https://torben.website/errorreporter/data/distributionBundle/index.compiled.js"
|
|
43
|
-
></script>
|
|
63
|
+
console.log('A', errorreporter)
|
|
44
64
|
```
|