
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@sagi.io/dns-over-https
Advanced tools
@sagi.io/dns-over-https
is an RFC-8484 compliant Node.js DNS over HTTPS API.
$ npm install --save @sagi.io/dns-over-https
We import as follows:
const doh = require('@sagi.io/dns-over-https')
doh.query = ({
name,
method = 'POST',
hostname = 'cloudflare-dns.com',
path = '/dns-query',
port = 443,
userAgent = '@sagi.io/dns-over-https',
type = 'A',
klass = 'IN',
useHttps = true,
})
A name
is mandatory. You can set your own method
, hostname
, path
, port
, userAgent
, type
, klass
and useHttps
.
A Promise
that resolves to a DNS
response object is returned.
For instance,
const doh = require('@sagi/dns-over-https')
(async () => {
const dnsResponse = await doh.query({name: 'sagi.io'})
})()
Results in:
{
"id": 0,
"type": "response",
"flags": 384,
"flag_qr": true,
"opcode": "QUERY",
"flag_aa": false,
"flag_tc": false,
"flag_rd": true,
"flag_ra": true,
"flag_z": false,
"flag_ad": false,
"flag_cd": false,
"rcode": "NOERROR",
"questions": [
{
"name": "sagi.io",
"type": "A",
"class": "IN"
}
],
"answers": [
{
"name": "sagi.io",
"type": "A",
"ttl": 300,
"class": "IN",
"flush": false,
"data": "151.101.1.195"
},
{
"name": "sagi.io",
"type": "A",
"ttl": 300,
"class": "IN",
"flush": false,
"data": "151.101.65.195"
}
],
"authorities": [],
"additionals": []
}
More usage examples can be found in example
.
MIT
FAQs
RFC-8484 Compliant DNS-over-HTTPS API
The npm package @sagi.io/dns-over-https receives a total of 4 weekly downloads. As such, @sagi.io/dns-over-https popularity was classified as not popular.
We found that @sagi.io/dns-over-https demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.