Package Exports
- letssl
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (letssl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
letssl
Description
Simple way to retrieve SSL certificate using HTTP ACME challenge. By default, Let's Encrypt Authority is used.
Installation
Install with npm:
npm install --save letsslUsage
const express = require('express');
const https = require('https');
const { getCertificate } = require('letssl');
async function startServer() {
const [key, cert] = await getCertificate({ commonName: 'example.com' });
const app = express();
app.get('/', (req, res) => {
res.end('Using SSL');
});
const server = https.createServer({ key, cert }, app).listen(443);
}
startServer();
Testing
There are three ways how certificate obtaining process could be tested.
Self-signed certificate
When you don't need to test real domain you can set the provider option to
selfSigned:
const [key, cert] = await getCertificate({
commonName: 'example.localhost',
provider: 'selfSigned',
});Let's Encrypt staging
When debugLevel is set and no directoryUrl provider,
https://acme-staging-v02.api.letsencrypt.org/directory is used as directoryUrl
const [key, cert] = await getCertificate({ commonName: 'stage.example.com', debugLevel: 1, // when > 0 and no directoryUrl, });
Test ACME server
If you need to run tests frequently, you can use Pebble, a small ACME test server. See the e2e test for example.
Credits
acme-client ACME client used under the hood
node-simple-cert Similar library