Node SSL Checker
Installation
Simply add ssl-checker
as a dependency:
$ npm install ssl-checker --save
$ yarn add ssl-checker
Usage
import sslChecker from "ssl-checker";
const getSslDetails = async (hostname: string) =>
await sslChecker(hostname`ex. badssl.com`);
Options
All valid https.RequestOptions
values.
Option | Default | Description |
---|
method | HEAD | Can be GET too |
port | 443 | Your SSL/TLS entry point |
agent | default | Default HTTPS agent with { maxCachedSessions: 0 } |
rejectUnauthorized | false | Skips authorization by default |
sslChecker("dyaa.me", { method: "GET", port: 443 }).then(console.info);
Response Example
{
"daysRemaining": 90,
"valid": true,
"validFrom": "issue date",
"validTo": "expiry date",
"validFor": ["www.example.com", "example.com"]
}
License
Copylefted (c) 8008 :trollface: Dyaa Eldin Moustafa Licensed under the MIT license.