prescription-dns

0.1.0 • Public • Published

Prescription DNS

This exposes the core node.js DNS module as a set of functions that return Observables instead of taking callbacks

Example

var Observable = require("prescription").Observable;
var dns        = require("prescription-dns");

// Asynchronously fetch the IP address of google.com, select the last one
// and print it out to the console.
dns.resolve4("www.google.com")
   .flatMap(function(addresses) { return Observable.fromArray(addresses) })
   .last()
   .subscribe(function(address) { console.log(address); });

/prescription-dns/

    Package Sidebar

    Install

    npm i prescription-dns

    Weekly Downloads

    5

    Version

    0.1.0

    License

    none

    Last publish

    Collaborators

    • josephmoniz