Socket
Socket
Sign inDemoInstall

unbound

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unbound

Bindings to libunbound for node.js


Version published
Weekly downloads
68
decreased by-26.09%
Maintainers
1
Weekly downloads
 
Created
Source

unbound

Bindings to libunbound for node.js.

Usage

const Unbound = require('unbound');
const ub = new Unbound();
const result = await ub.resolve('google.com');
console.log(result);

Outputs:

{ msg: <Buffer 00 00 81 80 00 01 00 01 00 00 00 ... >,
  secure: false,
  bogus: false,
  reason: null }

API

The API is a direct mapping to libunbound calls.

  • Unbound.version() - Return unbound version string.
  • Unbound#setOption(opt, val) - Set resolver option. Note that the trailing colon is not necessary. Values will be cast to strings (null='', bool='yes'/'no', num=num.toString(10)).
  • Unbound#getOption(opt) - Get resolver option. Note that the trailing colon is not necessary. Return values will be cast to bools, numbers, and nulls where appropriate.
  • Unbound#hasOption(opt) - Test whether an option is available.
  • Unbound#tryOption(opt, val) - Try to set option if available.
  • Unbound#setConfig(file) - Read unbound config file.
  • Unbound#setForward(addr) - Set host to forward DNS queries to.
  • Unbound#setStub(zone, addr, [prime=false]) - Setup stub zone.
  • Unbound#setResolvConf(filename) - Read from resolv.conf.
  • Unbound#setHosts(filename) - Read from an /etc/hosts file.
  • Unbound#addTrustAnchor(ta) - Add a trust anchor (DS/DNSKEY presentation).
  • Unbound#addTrustAnchorFile(file, [autr=false]) - Add trust anchor file. Set autr for auto-updating and reading.
  • Unbound#addTrustedKeys(file) - Add bind-style trust anchors.
  • Unbound#addZone(zoneName, zoneType) - Add a zone to the local authority info.
  • Unbound#removeZone(zoneName) - Remove zone.
  • Unbound#addData(data) - Add localdata to the local authority info.
  • Unbound#removeData(data) - Remove data.
  • Unbound#resolve(name, [type=A], [class=IN]) - Asynchronous recursive resolution (returns a Promise). type and class are raw qtypes and qclasses (no strings!). See above example for return value.

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

  • Copyright (c) 2018, Christopher Jeffrey (MIT License).

See LICENSE for more info.

Keywords

FAQs

Package last updated on 22 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc