Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

caa

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caa

rfc6844-conform CAA record lookup

  • 4.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.6K
decreased by-12.28%
Maintainers
1
Weekly downloads
 
Created
Source

caa

rfc6844-conform CAA record lookup

Install

npm i caa

Usage

const caa = require('caa');

await caa('subdomain.example.com');
// => [{flags: 0, tag: 'issue', value: 'letsencrypt.org', issuerCritical: false}]

await caa.matches('subdomain.example.com', 'letsencrypt.org');
// => true

API

caa(name, [opts])

Retrieve the CAA records which apply to the given name. Returns a CAA object.

caa.matches(name, ca, [opts])

Test if the CAA record for a given name matches a given ca.

Options
  • server: The DNS server to use. Defaults to the first system resolver or 8.8.8.8 if none is configured).
  • port: The port on the DNS server to use. Defaults to port 53.
  • ignoreTLDs: Don't query top level domains like com in example.com.
  • dnsSocket: A dns-socket instance.

License

© silverwind, distributed under BSD licence

Keywords

FAQs

Package last updated on 22 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc