# node-certifi **Repository Path**: mirrors_adamchainz/node-certifi ## Basic Information - **Project Name**: node-certifi - **Description**: (Node Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-11-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # certifi [![Build Status](https://travis-ci.org/certifi/node-certifi.svg?branch=master)](https://travis-ci.org/certifi/node-certifi) > [Certifi](http://certifi.io) 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 ```js 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) }, () => {}); ```