@medplum/agent 2.0.30 → 2.0.32
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 +20 -0
- package/dist/cjs/index.cjs +391 -1835
- package/installer.nsi +224 -0
- package/package.json +3 -2
- package/src/main.test.ts +31 -12
- package/src/main.ts +78 -36
package/README.md
CHANGED
|
@@ -6,3 +6,23 @@ On-prem agent for device connectivity.
|
|
|
6
6
|
> The Medplum Agent is currently in "alpha", and not ready for production use.
|
|
7
7
|
>
|
|
8
8
|
> Please [contact Medplum](mailto:hello@medplum.com) if you would like to learn more or get involved.
|
|
9
|
+
|
|
10
|
+
## Building
|
|
11
|
+
|
|
12
|
+
Build the JS output:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm run build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Build the `.exe` file using [Vercel `pkg`](https://github.com/vercel/pkg):
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm run package
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Build the installer using [NSIS](https://nsis.sourceforge.io/) (requires `makensis` on your PATH):
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm run installer
|
|
28
|
+
```
|