node-tinycert

node-tinycert JS library on GitHub node-tinycert JS library on npm Download node-tinycert JS library

tinycert API wrapper (V1)

Version 1.0.2 License MIT
node-tinycert has no homepage
node-tinycert JS library on GitHub
node-tinycert JS library on npm
Download node-tinycert JS library
Keywords
caapitinycert

node-tinycert

tinycert API wrapper for node.js

API documentation (and your API key) available at: https://www.tinycert.org/docs/api

library usage

First, require the library:

var TinyCertSession = require('node-tinycert');

Then, connect to your account via email, passphrase and API key:

var tc = new TinyCertSession(apiKey);
tc.connect(account, passphrase, function(err) {
    if (err) {
        console.log(err);
        return;
    };
    console.log('Connected to account <' + account + '>');
});

Example code

A full example of all supported functions can be found in test/index.js