errorreporter 1.0.339 → 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.
Files changed (2) hide show
  1. package/package.json +17 -17
  2. package/readme.md +27 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "errorreporter",
3
- "version": "1.0.339",
3
+ "version": "1.0.341",
4
4
  "description": "Error reporter for client.",
5
5
  "keywords": [
6
6
  "client",
@@ -50,28 +50,28 @@
50
50
  "watch": "weboptimizer build --watch"
51
51
  },
52
52
  "devDependencies": {
53
- "@babel/eslint-parser": "^7.28.6",
54
- "@babel/plugin-transform-proto-to-assign": "^7.27.1",
55
- "@babel/runtime": "^7.29.2",
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
- "@types/jsdom": "^28.0.1",
59
- "@types/node": "^25.6.0",
58
+ "@types/jsdom": "^28.0.3",
59
+ "@types/node": "^25.9.2",
60
60
  "@types/webpack-env": "^1.18.8",
61
- "@typescript-eslint/eslint-plugin": "^8.59.0",
62
- "@typescript-eslint/parser": "^8.59.0",
63
- "clientnode": "^4.0.1387",
64
- "eslint": "^10.2.1",
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": "^62.9.0",
67
- "jest": "^30.3.0",
66
+ "eslint-plugin-jsdoc": "^63.0.2",
67
+ "jest": "^30.4.2",
68
68
  "jsdoc": "^4.0.5",
69
69
  "node-fetch": "^3.3.2",
70
- "typescript-eslint": "^8.59.0",
71
- "ua-parser-js": "^2.0.9",
72
- "web-documentation": "^1.0.2",
73
- "weboptimizer": "^3.0.22",
74
- "webpack-dev-server": "^5.2.3"
70
+ "typescript-eslint": "^8.60.1",
71
+ "ua-parser-js": "^2.0.10",
72
+ "web-documentation": "^1.0.29",
73
+ "weboptimizer": "^3.0.24",
74
+ "webpack-dev-server": "^5.2.4"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "@babel/runtime": "*",
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 stand under a creative commons naming
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
 
@@ -26,19 +26,39 @@ Project status
26
26
  [![code coverage](https://img.shields.io/coverallsCoverage/github/thaibault/errorreporter?label=code%20coverage&style=for-the-badge)](https://coveralls.io/github/thaibault/errorreporter)
27
27
 
28
28
  [![deploy web documentation](https://img.shields.io/github/actions/workflow/status/thaibault/errorreporter/deploy-web-documentation.yaml?label=deploy%20web%20documentation&style=for-the-badge)](https://github.com/thaibault/errorreporter/actions/workflows/deploy-web-documentation.yaml)
29
- [![documentation website](https://img.shields.io/website-up-down-green-red/https/torben.website/errorreporter.svg?label=documentation-website&style=for-the-badge)](https://torben.website/errorreporter)
29
+ [![web documentation](https://img.shields.io/website-up-down-green-red/https/torben.website/errorreporter.svg?label=web-documentation&style=for-the-badge)](https://torben.website/errorreporter)
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
+ ```
30
52
 
31
53
  Use case
32
54
  --------
33
55
 
34
- An client side error reporter written in javaScript. Embed this code into your
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 informations. You can filter each non supported
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
- <script
42
- src="https://torben.website/errorreporter/data/distributionBundle/index.compiled.js"
43
- ></script>
63
+ console.log('A', errorreporter)
44
64
  ```