npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dappy-lookup

v2.0.7

Published

library that resolves names from dappy name system

Downloads

26

Readme

dappy-lookup

A library written in Typescript that resolves names from Dappy name system (DappyNS).

DappyNS is a next generation name system which:

  • Is compliant with DNS RFC 1035
  • Security-first designed by implementing DNS over HTTPS (RFC 8484)
  • Persisted and distributed by blockchain RChain
  • Enable clients to query in a trustless manner name records on the blockchain using:
    • A network of dappy name servers highly secured
    • A co-resolution mecanism to distribute the trust over the network

DappyNS is a trustless and secure way to distribute your public data with your partners, clients or devices (IOT). PKI certificates are good candidates. DappyNS can also help to organize and publish your DAO data due to to its hierarchical nature.

DappyNS documentation

You can find documentation here.

Installing

Node.js

npm i -S dappy-lookup

You don't have a dappy name ? Mint in one.

Using dappy-cli ...

Examples

Stand-alone dappy lookup

Here is an example to get you started:

import { lookup } from 'dappy-lookup';

async function run() {
    // lookup the A records for example.dappy on d network
    const recordsA = await lookup('example.dappy', 'A');
    console.log(recordsA);

    // lookup the AAAA records for example.dappy on d network
    const recordsAAAA = await lookup('example.dappy', 'AAAA');
    console.log(recordsAAAA);

    // lookup the CERT records for example.dappy on d network
    const recordsCERT = await lookup('example.dappy', 'CERT');
    console.log(recordsCERT);
});

run();

This example above will resolve a name on default dappy network which is the d network, which is the DappyNS production ready network.

Next example do the same but on gamma network (used for testing purposes)

import { lookup } from 'dappy-lookup';

async function run() {
    // lookup the A records for example.dappy on gamma network
    const recordA = await lookup('example.dappy', 'A', { network: 'gamma' });
    console.log(recordA);
});

run();

NodeJS request using dappy-lookup with CA certificate retrieval

It's a really a pain point to get a valid CA certificate and to install it at operating system level.

On DappyNS, name servers not only distribute IPv4 (A records) and IPv6 addresses (AAAA records) but also certificates to trust over CERT records (alternative of DANE). It enable dappy-lookup client to fetch dynamically and in a trusted manner (using coresolution mecanism) CA certificates.

The example below demonstrates how to do this:

import { lookup, nodeLookup } from 'dappy-lookup';

https.get('https://example.dappy/', {
    lookup: nodeLookup,
    ca: await lookup('example.dappy', 'CERT'),
}, (res) => {
  ...
});

NodeJS enables to override lookup function for HTTP and HTTPS native modules.

So dappy-lookup provide a lookup function (created with nodeLookup) with the same signature as dns.lookup provided by NodeJS.

NodeJS requests using dappy-lookup

The example below shows how to replace native NodeJS lookup function with the dappy-lookup equivalent function. In this example the certificate is not recovered dynamically, it is installed previously on the operating system.

import { nodeLookup } from 'dappy-lookup';

https.get('https://example.dappy/', {
    lookup: nodeLookup,
}, (res) => {
  ...
});

API

lookup()

function lookup(
  name: string,
  recordType: 'A' | 'AAAA' | 'CERT',
  options: {
    cacheMaxHit: number;
    cacheTTL: number;
    dappyNetwork: 'd' | 'gamma';
  }
) =>
  Promise<NamePacket>;

export type NamePacket = {
  version: string;
  type: 'query' | 'response';
  rcode: ReturnCode;
  id?: number;
  flags: number;
  questions: {
    type: 'A' | 'AAAA' | 'CERT';
    class: 'IN';
    name: string;
  }[];
  answers: {
    type: 'A' | 'AAAA' | 'CERT';
    class: 'IN';
    name: string;
    ttl: number;
    data: string;
  }[];
  additionals: [];
  authorities: [];
};

export enum ReturnCode {
  NOERROR, // DNS Query completed successfully
  FORMERR, //  DNS Query Format Error
  SERVFAIL, // Server failed to complete the DNS request
  NXDOMAIN, //  Domain name does not exist.
  NOTIMP, //  Function not implemented
  REFUSED, // The server refused to answer for the query
  YXDOMAIN, //  Name that should not exist, does exist
  XRRSET, //  RRset that should not exist, does exist
  NOTAUTH, //  Server not authoritative for the zone
  NOTZONE, //  Name not in zone
}

Resolve A record on DappyNS.

Example:

const recordA = await lookup('example.dappy', 'A');
console.log(recordA);

nodeLookup()

 function nodeLookup(
    name: string,
    options?: {
      all?: boolean;
      family?: number;
      hints?: number;
      verbatim?: boolean;
    },
    callback: (err: Error, address: string, family: number) => void;
  ) => void;
}

lookup() can be used by HTTP and HTTPS NodeJS modules to resolve names.

Example:

import { nodeLookup, lookup } from 'dappy-lookup';

https.get('https://example.dappy', {
  lookup: nodeLookup,
  ca: await lookup('example.dappy', 'CERT'),
}, (res) => {
  ...
});