![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
dns-lookup-sync
Advanced tools
Synchronous version of dnsPromises.lookup - Resolves a host name (e.g. 'nodejs.org') into the first found A (IPv4) or AAAA (IPv6) record
npm install dns-lookup-sync
Try with Replit.
The API is identical to dnsPromises.lookup, with the promise being unwrapped in the return type to achieve synchronicity.
dnsLookupSync(hostname, options);
Looking up 'localhost'
with default options
const dnsLookupSync = require('dns-lookup-sync');
console.log(dnsLookupSync('localhost'));
// Sample output:
// { address: '127.0.0.1', family: 4 }
Looking up a list of addresses from 'www.google.com'
const dnsLookupSync = require('dns-lookup-sync');
console.log(dnsLookupSync('www.google.com', { all: true }));
// Sample output:
// [
// { address: '172.217.167.100', family: 4 },
// { address: '2404:6800:4006:80b::2004', family: 6 }
// ]
Hostname string to look up. For example,
'localhost'
'www.google.com'
If an integer is passed, for example 4
, it is equivalent to passing the object { family: 4 }
.
Option | Description | Example | Default |
---|---|---|---|
familynumber |
The record family. Must be 4 , 6 , or 0 . The value 0 indicates that IPv4 and IPv6 addresses are both returned.
| 4 | 0 |
hintsnumber | One or more supported getaddrinfo flags. Multiple flags may be passed by bitwise ORing their values. |
dns.ADDRCONFIG
| undefined |
allboolean | When true, the dnsLookupSync will return all addresses in an array. Otherwise, returns a single address |
true
| false |
verbatimboolean | When true, the returns the IPv4 and IPv6 addresses in the order the DNS resolver returned them. When false, IPv4 addresses are placed before IPv6 addresses. |
true
| see docs |
By default, i.e. options.all === false
, a LookupAddress
of the form
{ address: string, family: number };
is returned. For example localhost
may resolve to:
{ address: '127.0.0.1', family: 4 }
Otherwise, an array of LookupAddress
is returned. For example, www.google.com may resolve to:
[
{ address: '142.250.204.4', family: 4 },
{ address: '2404:6800:4006:814::2004', family: 6 }
]
Copyright (c) 2023 Khiet Tam Nguyen
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the “Software”),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
There are currently no known limitations.
This module was inspired by dns-sync, although focuses primarily on providing the most up-to-date version of dnsPromises.lookup in a synchronous manner.
FAQs
Synchronous version of dnsPromises.lookup - Resolves a host name (e.g. 'nodejs.org') into the first found A (IPv4) or AAAA (IPv6) record
We found that dns-lookup-sync 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.