From 6161eff92135f7a5f8a7a979748cdec795a47c67 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 18 Nov 2018 03:27:42 -0700 Subject: [PATCH] update README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8b7ab6..4f68bc4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ECDSA-CSR.js ========= -Sponsored by [Root](https://therootcompany.com) +Sponsored by [Root](https://therootcompany.com), built for [ACME.js](https://git.coolaj86.com/coolaj86/acme.js) and [Greenlock.js](https://git.coolaj86.com/coolaj86/greenlock-express.js) A focused, **zero-dependency** library that can do exactly one thing really, really well: * Generate a Certificate Signing Requests (CSR), and sign it! @@ -38,7 +38,8 @@ var edsacsr = require('ecdsa-csr'); var domains = [ 'example.com', 'www.example.com', 'api.example.com' ]; return ecdsacsr({ key: key, domains: domains }).then(function (csr) { - console.log('CSR PEM:', csr); + console.log('CSR PEM:'); + console.log(csr); }); ```