Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nktnet1/dns-lookup-sync

Synchronous version of dnsPromises.lookup
https://github.com/nktnet1/dns-lookup-sync

dns dns-lookup dns-sync domain ipv4 ipv6 lookup resolve sync synchronous

Last synced: 2 days ago
JSON representation

Synchronous version of dnsPromises.lookup

Awesome Lists containing this project

README

        

# [![DNS Lookup Sync](logo.svg)](https://github.com/nktnet1/dns-lookup-sync)

[![pipeline](https://github.com/nktnet1/dns-lookup-sync/actions/workflows/pipeline.yml/badge.svg)](https://github.com/nktnet1/dns-lookup-sync/actions/workflows/pipeline.yml)
 
[![codecov](https://codecov.io/gh/nktnet1/dns-lookup-sync/branch/main/graph/badge.svg?token=RAC7SKJTGU)](https://codecov.io/gh/nktnet1/dns-lookup-sync)
 
[![Maintainability](https://api.codeclimate.com/v1/badges/46c9b884916b726d91ed/maintainability)](https://codeclimate.com/github/nktnet1/dns-lookup-sync/maintainability)
 
[![Snyk Security](https://snyk.io/test/github/nktnet1/dns-lookup-sync/badge.svg)](https://snyk.io/test/github/nktnet1/dns-lookup-sync)
 
[![GitHub top language](https://img.shields.io/github/languages/top/nktnet1/dns-lookup-sync)](https://github.com/search?q=repo%3Anktnet1%2Fdns-lookup-sync++language%3ATypeScript&type=code)

[![NPM Version](https://img.shields.io/npm/v/dns-lookup-sync?logo=npm)](https://www.npmjs.com/package/dns-lookup-sync?activeTab=versions)
 
[![install size](https://packagephobia.com/badge?p=dns-lookup-sync)](https://packagephobia.com/result?p=dns-lookup-sync)
 
[![Depfu](https://badges.depfu.com/badges/8f864f96bde332adb2a53fb30c4832a6/overview.svg)](https://depfu.com/github/nktnet1/dns-lookup-sync?project_id=39390)
 
[![NPM License](https://img.shields.io/npm/l/dns-lookup-sync)](https://opensource.org/license/mit/)
 
[![GitHub issues](https://img.shields.io/github/issues/nktnet1/dns-lookup-sync.svg?style=social)](https://github.com/nktnet1/dns-lookup-sync/issues)

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nktnet1_dns-lookup-sync&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=nktnet1_dns-lookup-sync)
 
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b56caf9395e743deaccd3a0a67d22819)](https://app.codacy.com/gh/nktnet1/dns-lookup-sync/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
 
[![DeepSource](https://app.deepsource.com/gh/nktnet1/dns-lookup-sync.svg/?label=active+issues&show_trend=true&token=_1JuBM2nzzo4t4DqFTdPMwwo)](https://app.deepsource.com/gh/nktnet1/dns-lookup-sync/)
 
[![codebeat badge](https://codebeat.co/badges/20b443c6-3784-4b63-99de-c69f0701a633)](https://codebeat.co/projects/github-com-nktnet1-dns-lookup-sync-main)
 
[![GitHub stars](https://img.shields.io/github/stars/nktnet1/dns-lookup-sync.svg?style=social)](https://github.com/nktnet1/dns-lookup-sync/stargazers)

[![Downloads Total](https://badgen.net/npm/dt/dns-lookup-sync)](https://moiva.io/?npm=dns-lookup-sync)
 
[![Downloads Yearly](https://badgen.net/npm/dy/dns-lookup-sync)](https://moiva.io/?npm=dns-lookup-sync)
 
[![Downloads Monthly](https://badgen.net/npm/dm/dns-lookup-sync)](https://moiva.io/?npm=dns-lookup-sync)
 
[![Downloads Weekly](https://badgen.net/npm/dw/dns-lookup-sync)](https://moiva.io/?npm=dns-lookup-sync)
 
[![Downloads Daily](https://badgen.net/npm/dd/dns-lookup-sync)](https://moiva.io/?npm=dns-lookup-sync)

---

Synchronous version of [dnsPromises.lookup](https://nodejs.org/api/dns.html#dnspromiseslookuphostname-options)

[![Try with Replit](https://replit.com/badge?caption=Try%20with%20Replit)](https://replit.com/@nktnet1/dns-lookup-sync-example#index.js)

---

- [1. Installation](#1-installation)
- [2. Usage](#2-usage)
- [2.1. hostname](#21-hostname)
- [2.2. options](#22-options)
- [2.3. return](#23-return)
- [3. License](#3-license)
- [4. Limitations](#4-limitations)
- [5. Caveats](#5-caveats)

## 1. Installation

```
npm install dns-lookup-sync
```

## 2. Usage

Try with [Replit](https://replit.com/@nktnet1/dns-lookup-sync-example#index.js).

The API is identical to [dnsPromises.lookup](https://nodejs.org/api/dns.html#dnspromiseslookuphostname-options), with the promise being unwrapped in the return type to achieve synchronicity.

```
dnsLookupSync(hostname, options);
```

Examples (click to view)


Looking up `'localhost'` with default options

```javascript
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'`

```javascript
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 }
// ]
```


### 2.1. hostname

Hostname string to look up. For example,
- `'localhost'`
- `'www.google.com'`

### 2.2. options

If an integer is passed, for example `4`, it is equivalent to passing the object `{ family: 4 }`.


Option
Description
Example
Default


family
number

The record family. Must be 4, 6, or 0. The value 0 indicates that IPv4 and IPv6 addresses are both returned.

4
0


hints
number
One or more supported getaddrinfo flags. Multiple flags may be passed by bitwise ORing their values.

dns.ADDRCONFIG

undefined


all
boolean
When true, the dnsLookupSync will return all addresses in an array. Otherwise, returns a single address

true

false


verbatim
boolean

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

### 2.3. return

By default, i.e. `options.all === false`, a `LookupAddress` of the form
```typescript
{ address: string, family: number };
```

is returned. For example `localhost` may resolve to:
```javascript
{ address: '127.0.0.1', family: 4 }
```

Otherwise, an array of `LookupAddress` is returned. For example, [www.google.com](https://www.google.com) may resolve to:
```javascript
[
{ address: '142.250.204.4', family: 4 },
{ address: '2404:6800:4006:814::2004', family: 6 }
]
```

## 3. License

Massachusetts Institute of Technology
(MIT)


```
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.
```

## 4. Limitations

There are currently no known limitations.

## 5. Caveats

This module was inspired by
[dns-sync](https://github.com/skoranga/node-dns-sync), although focuses
primarily on providing the most up-to-date version of
[dnsPromises.lookup](https://nodejs.org/api/dns.html#dnspromiseslookuphostname-options) in a synchronous manner.