Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

certifi

certifi800.8kMPL-2.014.5.15

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

ca, cert, certificate, pem, ssl, tls, https

readme

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 --save certifi

Usage

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

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

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