• hostname {string}

    Uses the DNS protocol to resolve a start of authority record (SOA record) for the hostname. On success, the Promise is resolved with an object with the following properties:

    • nsname
    • hostmaster
    • serial
    • refresh
    • retry
    • expire
    • minttl
    1. {
    2. nsname: 'ns.example.com',
    3. hostmaster: 'root.example.com',
    4. serial: 2013101809,
    5. refresh: 10000,
    6. retry: 2400,
    7. expire: 604800,
    8. minttl: 3600
    9. }