certifi

14.5.15 • Public • Published

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 () {});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 14.5.15
    490
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 14.5.15
    490
  • 14.5.14
    1
  • 0.1.0
    0

Package Sidebar

Install

npm i certifi

Weekly Downloads

491

Version

14.5.15

License

MPL-2.0

Unpacked Size

318 kB

Total Files

5

Last publish

Collaborators

  • kennethreitz
  • sindresorhus