@open-charging-cloud/chargy-core 0.4.0 → 0.6.1

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/README.md CHANGED
@@ -1,102 +1,122 @@
1
- # Chargy Core
2
-
3
- The ChargyCore TypeScript library shared between Chargy Desktop, Web & Mobile applications.
4
-
5
- The package is published as modern ESM and ships generated TypeScript declarations.
6
-
7
-
8
- ## Usage
9
-
10
- ```ts
11
- import { Chargy } from "@open-charging-cloud/chargy-core";
12
- ```
13
-
14
-
15
- ## Runtime Architecture
16
-
17
- ChargyCore is consumed in different JavaScript runtimes. The browser-based Chargy WebApp and Electron renderer processes have Web APIs such as `DOMParser`, `Blob`, `TextEncoder`, `ImageData`, `DOMMatrix`, `Path2D`, and browser worker loading semantics. Node.js-based tests, command line tools, server-side verification, and build-time checks do not provide the same environment.
18
-
19
- For that reason the package ships two JavaScript builds behind one public import:
20
-
21
- ```text
22
- dist/browser/index.js
23
- dist/node/index.js
24
- ```
25
-
26
- The runtime-specific file is selected through conditional package exports in `package.json`. Browser bundlers should resolve the `browser` condition and receive `dist/browser/index.js`. Node.js resolves the `node` condition and receives `dist/node/index.js`.
27
-
28
- This split is especially important for PDF.js. Browser contexts should use the normal `pdfjs-dist` build, because the browser already provides the canvas and DOM APIs PDF.js expects. Node.js should use `pdfjs-dist/legacy/build/pdf.mjs`, because the legacy build contains Node-oriented setup for the missing canvas-related globals and avoids the modern browser-only assumptions.
29
-
30
- Keeping these paths separate has several advantages:
31
-
32
- - Browser bundles do not include the Node/legacy PDF.js path as an unused lazy chunk.
33
- - Node tests and CLI-style usage do not depend on browser-only PDF.js behavior.
34
- - Chargy apps do not need local Webpack aliases or test polyfills for ChargyCore internals.
35
- - Bundle checks can verify that the browser build only references browser PDF.js imports and the Node build only references legacy PDF.js imports.
36
-
37
- When adding runtime-sensitive dependencies, avoid branching on runtime inside shared source code if that would make bundlers see both implementations. Prefer a small adapter under `src/` and let the build or conditional exports select the runtime-specific implementation.
38
-
39
-
40
- ## Development
41
-
42
- ```bash
43
- npm install
44
- npm run typecheck
45
- npm run lint
46
- npm run build
47
- npm run test:node
48
- npm run test:bundle
49
- npm run test:browser
50
- npm test
51
- npm run verify
52
- ```
53
-
54
- The build emits the package into `dist/`.
55
-
56
-
57
- ### Expected Test Flow
58
-
59
- For code changes, use the full verification flow before publishing or handing a package to the Chargy apps:
60
-
61
- ```bash
62
- npm run verify
63
- ```
64
-
65
- `verify` runs the following checks:
66
-
67
- - `npm run typecheck`: validates the TypeScript sources and test/config TypeScript files.
68
- - `npm run lint`: runs the strict type-aware ESLint setup. Existing migration findings are warnings, new unused variables are errors.
69
- - `npm test`: runs all runtime checks:
70
- - `npm run test:node`: runs the Chargy fixture tests in Vitest's Node environment and uses the Node PDF.js adapter.
71
- - `npm run build`: creates both package builds.
72
- - `npm run test:bundle`: checks the generated bundles so the browser build only references the browser PDF.js path and the Node build only references the legacy PDF.js path.
73
- - `npm run test:browser`: imports `dist/browser/index.js` in headless Chromium via Vitest Browser Mode and verifies the public browser entry can be loaded and instantiated.
74
- - `npm run build`: recreates the final publishable `dist/` output.
75
-
76
- For dependency, build, export, PDF.js, or browser-facing changes, run the individual steps while iterating and finish with `npm run verify`. The browser test requires Playwright's Chromium browser; if it is missing locally, run:
77
-
78
- ```bash
79
- npx playwright install chromium
80
- ```
81
-
82
-
83
- ```bash
84
- npm version 0.4.0 --no-git-tag-version
85
- npm run verify
86
- npm pack --dry-run
87
- npm pack
88
- npm login
89
- npm whoami
90
- npm publish
91
- ```
92
-
93
-
94
- ## Funding
95
-
96
- This Open Source project is partially funded by the [NGI Zero Commons Fund](https://nlnet.nl/commonsfund/) as part of our [EVQI project](https://nlnet.nl/project/EVQI/).
97
-
98
- We also appreciate any additional funding and long-term support for the Chargy family, for example via [GitHub Sponsors](https://github.com/sponsors/GraphDefined), as it helps us keep the project sustainable, independent and useful for the entire e-mobility community.
99
-
100
- <center>
101
- <img src="images/NGI0_tag.svg" height="30">
102
- </center>
1
+ # Chargy Core
2
+
3
+ Chargy Core is a transparency software library for the validation of secure and transparent e-mobility charging processes, as defined by the *German Calibration Law ("Eichrecht")* in combination with the [Alternative Fuels Infrastructure Regulation (AFIR)](https://transport.ec.europa.eu/transport-themes/clean-transport/alternative-fuels-sustainable-mobility-europe/alternative-fuels-infrastructure_en) and the new [Measuring instruments (MID)](https://single-market-economy.ec.europa.eu/single-market/goods/european-standards/harmonised-standards/measuring-instruments-mid_en) of the European Commission and the [European Digital Quality Infrastructure](https://www.qi-digital.de/en/). The software allows you to verify the cryptographic signatures of energy measurements within charge detail records and comes with a couple of useful extentions to simplify the entire process for endusers and operators.
4
+
5
+ This software is written as a modern ESM TypeScript package with generated declaration files, providing shared core functionality for the Chargy Desktop, Web & Mobile applications.
6
+
7
+
8
+ ## Benefits of Chargy
9
+
10
+ 1. Chargy comes with __*meta data*__. True charging transparency is more than just signed smart meter values. Chargy allows you to group multiple signed smart meter values to entire charging sessions and to add additional meta data like EVSE information, geo coordinates, tariffs, ... within your backend in order to improve the user experience for the ev drivers.
11
+ 2. Chargy is __*secure*__. Chargy implements a public key infrastructure for managing certificates of smart meters, EVSEs, charging stations, charging station operators and e-mobility providers. By this the ev driver will always retrieve the correct public key to verify a charging process automatically and without complicated manual lookups in external databases.
12
+ 3. Chargy is __*Open Source*__. In contrast to other vendors in e-mobility, we belief that true transparency is only trustworthy if the entire process and the required software is open and reusable under a fair copyleft license (AGPL).
13
+ 4. Chargy is __*open for your contributions*__. We currently support adapters for the protocols of different charging station vendors like chargeIT mobility, ABL (OCMF), chargepoint. The certification at the Physikalisch-Technische Bundesanstalt (PTB) is provided by chargeIT mobility. If you want to add your protocol or a protocol adapter feel free to read the contributor license agreement and to send us a pull request.
14
+
15
+
16
+ ## Supported Charge Transparency Data Formats
17
+
18
+ - Alfen
19
+ - Bauer energy meters
20
+ - EMH energy meters
21
+ - Mennekes XML
22
+ - OCMF v1.1 - v1.4
23
+ - Porsche
24
+ - chargeIT (2 versions)
25
+ - chargepoint
26
+
27
+
28
+ ## Usage
29
+
30
+ ```ts
31
+ import { Chargy } from "@open-charging-cloud/chargy-core";
32
+ ```
33
+
34
+
35
+ ## Runtime Architecture
36
+
37
+ ChargyCore is consumed in different JavaScript runtimes. The browser-based Chargy WebApp and Electron renderer processes have Web APIs such as `DOMParser`, `Blob`, `TextEncoder`, `ImageData`, `DOMMatrix`, `Path2D`, and browser worker loading semantics. Node.js-based tests, command line tools, server-side verification, and build-time checks do not provide the same environment.
38
+
39
+ For that reason the package ships two JavaScript builds behind one public import:
40
+
41
+ ```text
42
+ dist/browser/index.js
43
+ dist/node/index.js
44
+ ```
45
+
46
+ The runtime-specific file is selected through conditional package exports in `package.json`. Browser bundlers should resolve the `browser` condition and receive `dist/browser/index.js`. Node.js resolves the `node` condition and receives `dist/node/index.js`.
47
+
48
+ This split is especially important for PDF.js. Browser contexts should use the normal `pdfjs-dist` build, because the browser already provides the canvas and DOM APIs PDF.js expects. Node.js should use `pdfjs-dist/legacy/build/pdf.mjs`, because the legacy build contains Node-oriented setup for the missing canvas-related globals and avoids the modern browser-only assumptions.
49
+
50
+ Keeping these paths separate has several advantages:
51
+
52
+ - Browser bundles do not include the Node/legacy PDF.js path as an unused lazy chunk.
53
+ - Node tests and CLI-style usage do not depend on browser-only PDF.js behavior.
54
+ - Chargy apps do not need local Webpack aliases or test polyfills for ChargyCore internals.
55
+ - Bundle checks can verify that the browser build only references browser PDF.js imports and the Node build only references legacy PDF.js imports.
56
+
57
+ When adding runtime-sensitive dependencies, avoid branching on runtime inside shared source code if that would make bundlers see both implementations. Prefer a small adapter under `src/` and let the build or conditional exports select the runtime-specific implementation.
58
+
59
+
60
+ ## Development
61
+
62
+ ```bash
63
+ npm install
64
+ npm run typecheck
65
+ npm run lint
66
+ npm run build
67
+ npm run test:node
68
+ npm run test:bundle
69
+ npm run test:browser
70
+ npm test
71
+ npm run verify
72
+ ```
73
+
74
+ The build emits the package into `dist/`.
75
+
76
+
77
+ ### Expected Test Flow
78
+
79
+ For code changes, use the full verification flow before publishing or handing a package to the Chargy apps:
80
+
81
+ ```bash
82
+ npm run verify
83
+ ```
84
+
85
+ `verify` runs the following checks:
86
+
87
+ - `npm run typecheck`: validates the TypeScript sources and test/config TypeScript files.
88
+ - `npm run lint`: runs the strict type-aware ESLint setup. Existing migration findings are warnings, new unused variables are errors.
89
+ - `npm test`: runs all runtime checks:
90
+ - `npm run test:node`: runs the Chargy fixture tests in Vitest's Node environment and uses the Node PDF.js adapter.
91
+ - `npm run build`: creates both package builds.
92
+ - `npm run test:bundle`: checks the generated bundles so the browser build only references the browser PDF.js path and the Node build only references the legacy PDF.js path.
93
+ - `npm run test:browser`: imports `dist/browser/index.js` in headless Chromium via Vitest Browser Mode and verifies the public browser entry can be loaded and instantiated.
94
+ - `npm run build`: recreates the final publishable `dist/` output.
95
+
96
+ For dependency, build, export, PDF.js, or browser-facing changes, run the individual steps while iterating and finish with `npm run verify`. The browser test requires Playwright's Chromium browser; if it is missing locally, run:
97
+
98
+ ```bash
99
+ npx playwright install chromium
100
+ ```
101
+
102
+
103
+ ```bash
104
+ npm version 0.6.1 --no-git-tag-version
105
+ npm run verify
106
+ npm pack --dry-run
107
+ npm pack
108
+ npm login
109
+ npm whoami
110
+ npm publish
111
+ ```
112
+
113
+
114
+ ## Funding
115
+
116
+ This Open Source project is partially funded by the [NGI Zero Commons Fund](https://nlnet.nl/commonsfund/) as part of our [EVQI project](https://nlnet.nl/project/EVQI/).
117
+
118
+ We also appreciate any additional funding and long-term support for the Chargy family, for example via [GitHub Sponsors](https://github.com/sponsors/GraphDefined), as it helps us keep the project sustainable, independent and useful for the entire e-mobility community.
119
+
120
+ <center>
121
+ <img src="images/NGI0_tag.svg" height="30">
122
+ </center>
@@ -1 +1 @@
1
- {"version":3,"file":"BSMCrypt01.d.ts","sourceRoot":"","sources":["../src/BSMCrypt01.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BSMCrypt01.d.ts","sourceRoot":"","sources":["../src/BSMCrypt01.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"Mennekes.d.ts","sourceRoot":"","sources":["../src/Mennekes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Mennekes.d.ts","sourceRoot":"","sources":["../src/Mennekes.ts"],"names":[],"mappings":"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"}