0.0.5 • Published 5 years ago

appolo-dns-cache v0.0.5

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

DNS Cache

This module wraps the dns and caches all dns lookups using appolo-cache

Installation

npm install appolo-cache

Usage

wrap dns methods

import dns = require('dns');
import {dnsCache} from "appolo-dns-cache";

dnsCache({override: true, ttl: 1000, maxItems: 10000});
  
    //will call the wrapped dns
    dns.lookup('www.yahoo.com', function(err, result) {
        //do something with result
    });

use dnsCache

import {dnsCache} from "appolo-dns-cache";

let dns = dnsCache({override: false, ttl: 1000, maxItems: 10000});

 //will call the wrapped dns
    dns.lookup('www.google.com', function(err, result) {
        //do something with result
    });
0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago