mongodb-notary-service-client

0.4.7 • Public • Published

mongodb-notary-service-client travis npm

A client for our notary-service (an API for codesigning).

Example

CLI

First, create a .env file:

NOTARY_URL=${url}
NOTARY_AUTH_TOKEN=${token}
NOTARY_SIGNING_KEY=${key_name}

Install the client:

npm install -g mongodb-notary-service-client;

Sign a file in-place:

notary my-app.rpm;

Sign multiple files in-place:

notary my-app.rpm my-app.deb my-app.tar.gz;

View more details:

☉ notary --help
 
  Commands:
 
    sign [files...]  sign one or more files
    check            check configuration
    logs             get log from notary-service
 
  Options:
 
    -h, --help     output usage information
    -V, --version  output the version number
    --debug        show debug output

API

process.env.NOTARY_URL="${url}";
process.env.NOTARY_AUTH_TOKEN="${token}";
process.env.NOTARY_SIGNING_KEY="${key_name}";
 
const sign = require('mongodb-notary-service-client');
sign('my-app.rpm').then((signed) => {
  if (signed) console.log('my-app.rpm has been signed and rewritten in-place');
});

License

Apache 2.0

Readme

Keywords

none

Package Sidebar

Install

npm i mongodb-notary-service-client

Weekly Downloads

1

Version

0.4.7

License

Apache-2.0

Last publish

Collaborators

  • imlucas