0.4.7 ā€¢ Published 7 years ago

mongodb-notary-service-client v0.4.7

Weekly downloads
113
License
Apache-2.0
Repository
github
Last release
7 years ago

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

0.4.7

7 years ago

0.4.6

7 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago