From bed12df898e5e06eac774d6f032efdb4b663981e Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 11 Aug 2016 10:01:24 -0600 Subject: [PATCH] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 872cfa4..4872cfe 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,13 @@ Output all info by passing `--debug` or use `--json` to see the basic info prett var certpem = require('certpem').certpem var cert = fs.readFile('cert.pem', 'ascii', function (err, certstr) { - console.info(cert.pem.info()); - console.info(cert.pem.debug()); + // basic info + console.info(certpem.info()); + + // way too much info + console.info(certpem.debug()); + }); ```