Monkey patch DNS lookup method for node.js.
If you used node.js with disabled IPv4 - you got exception (ENETUNREACH) in most of network operations, but ping6 address
working fine.
To fix this error with minimal amount of code (you still can use dns.resolve6
and get valid IPv6 addresses) - monkey patched lookup method was written.
// Mokey patch
require('dns-graceful-stack-switch')(6);
// Remove mokey patch
require('dns-graceful-stack-switch')(null, true);
This module returns function(defaultVersion, remove)
.
defaultVersion
- IP stack version that will be used first to lookup address. If it fails - another will be used. Defaults toprocess.env.NODE_DNS_GRACEFUL_STACK_SWITCH_DEFAULT
and after that to4
.remove
- remove monkeypatch. Defaults tofalse
.
After executing dns.lookup will be loaded with require
and lookup
method will be replaced.
This bug was "patched" in Node.js, but magic option in net.connect
(which gives you ability to write right http.Agent) released only in Node.js 0.11.6.
Unix/Macintosh:
make test