Skip to content

(Node Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.

License

Notifications You must be signed in to change notification settings

certifi/node-certifi

Repository files navigation

certifi Build Status

Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. It has been extracted from the Python Requests project.

Install

$ npm install certifi

Usage

const fs = require('fs');
const https = require('https');
const certifi = require('certifi');

console.log(certifi);
//=> '/User/sindresorhus/node-certifi/cacert.pem'

https.createServer({
	cert: fs.readFileSync(certifi)
}, () => {});

About

(Node Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.

Resources

License

Stars

Watchers

Forks

Packages

No packages published