https://github.com/captn3m0/find-root-ca-cert
Node package to find the OS-installed root CA certificates. This uses the same location list as golang
https://github.com/captn3m0/find-root-ca-cert
ca-certificate ca-certificates file-finder linux npm package
Last synced: 2 months ago
JSON representation
Node package to find the OS-installed root CA certificates. This uses the same location list as golang
- Host: GitHub
- URL: https://github.com/captn3m0/find-root-ca-cert
- Owner: captn3m0
- License: mit
- Created: 2019-04-18T14:33:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-30T09:20:05.000Z (almost 3 years ago)
- Last Synced: 2024-12-31T01:28:22.526Z (4 months ago)
- Topics: ca-certificate, ca-certificates, file-finder, linux, npm, package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/find-root-ca-cert
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# find-root-ca-cert
Node package to find the OS-installed root CA certificates. This uses the same location list as go. Based upon this [this answer](https://serverfault.com/a/722646) on ServerFault.
## Installation
`npm install --save find-root-ca-cert`
## Usage
```js
const certFinder = require("find-root-ca-cert");
certFinder.findCAPath();
// /etc/ssl/certs/ca-certificates.crt
certFinder.findCABundle();
// /etc/ssl/certs/ca-certificates.crt
```## Supported Platforms
'aix', 'freebsd', 'linux', 'openbsd', 'sunos'
## Unsupported Platforms
'ios', 'darwin', 'win32'
## License
Licensed under the [MIT License](https://nemo.mit-license.org/). See LICENSE file for details.