![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.