0.6.3 • Published 7 months ago

node-ovsx-sign v0.6.3

Weekly downloads
-
License
EPL-2.0
Repository
github
Last release
7 months ago

node-ovsx-sign

This package is an open-source alternative to Microsoft's proprietary node-vsce-sign, which enables a feature in VS Code called Repository signing.

Installing

npm i -g node-ovsx-sign

Example usage of signing CLI

Note: this requires access to the server-side private key for signing.

node-ovsx-sign sign extension.vsix keys/private.pem

Example usage of verifying Node module

import { verify, ExtensionSignatureVerificationError } from "node-ovsx-sign";

(async () => {
  try {
    await verify("ext.vsix", "ext.sigzip");
    console.log("Verified successfully");
  } catch (e) {
    if (e instanceof ExtensionSignatureVerificationError) {
      console.error("Could not verify extension signature");
    } else {
      throw e;
    }
  }
})();
0.6.3

7 months ago

0.6.2

10 months ago

0.6.1

1 year ago

0.6.0

1 year ago

0.5.0

1 year ago

0.4.4

1 year ago

0.4.3

1 year ago

0.4.2

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago

0.3.2

1 year ago

0.3.1

1 year ago

0.3.0

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago