0.1.0 • Published 11 years ago

prescription-dns v0.1.0

Weekly downloads
7
License
-
Repository
-
Last release
11 years ago

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); });
0.1.0

11 years ago