proxy-dns
v1.1.0
Published
dns proxy framework
Downloads
10
Readme
ProxyDNS
ProxyDNS provides a koa-like framework for designing custom DNS proxy servers.
Installation
$ npm install proxy-dns
Currently only supported on node.js v4.x+ due to the use of some ES2015 features.
Example
import ProxyDNS from 'proxy-dns';
const dns = new ProxyDNS({
ttl: 600
});
dns.use(function* (next) {
if (this.domain === 'reddit.com') {
this.answers = [
'127.0.0.1'
];
}
yield next;
});
dns.listen(53);
Running tests
$ npm test
License
ISC License (ISC)
Copyright © 2016, Adam Snodgrass
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.