You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,35 @@ Zstandard compression library for Node.js
10
10
npm install @mongodb-js/zstd
11
11
```
12
12
13
+
### Release Integrity
14
+
15
+
Releases are created automatically and signed using the [Node team's GPG key](https://pgp.mongodb.com/node-driver.asc). This applies to the git tag as well as all release packages provided as part of a GitHub release. To verify the provided packages, download the key and import it using gpg:
16
+
17
+
```
18
+
gpg --import node-driver.asc
19
+
```
20
+
21
+
The GitHub release contains a detached signature file for the NPM package (named
22
+
`mongodb-js-zstd-X.Y.Z.tgz.sig`).
23
+
24
+
The following command returns the link npm package.
25
+
```shell
26
+
npm view @mongodb-js/zstd@vX.Y.Z dist.tarball
27
+
```
28
+
29
+
Using the result of the above command, a `curl` command can return the official npm package for the release.
30
+
31
+
To verify the integrity of the downloaded package, run the following command:
0 commit comments