Simple DNS Server in Node.JS? (Primary/Authoritative DNS Server) (maybe ndns?)

前端 未结 6 1326
逝去的感伤
逝去的感伤 2021-01-30 06:32

Does anybody know of a DNS Server that is written in Node.JS? I am specifically interested in Authoritative DNS Servers (as opposed to caching DNS server).

The only thin

相关标签:
6条回答
  • 2021-01-30 07:16

    I found a DNS server write in node.js fun_dns the source is on github

    0 讨论(0)
  • 2021-01-30 07:19

    Here's "a very basic authority server built with Node.js", in < 500 lines: dnsserver.js

    0 讨论(0)
  • 2021-01-30 07:19

    Check out https://github.com/tjfontaine/node-dns

    0 讨论(0)
  • 2021-01-30 07:25

    bns: DNS library, server, and validating recursive resolver for node.js, in pure javascript.

    0 讨论(0)
  • 2021-01-30 07:29

    After reviewing all available node.js DNS libraries, i found DNS2 to be one of the best available library in 2020 which is still maintained.

    Some of its features:

    • Implementation in Pure JavaScript with no dependencies
    • Server and Client
    • Lot of Type Supported
    • Extremely lightweight
    • DNS over UDP, TCP, HTTPS Supported

    https://github.com/song940/node-dns

    npm install dns2
    
    0 讨论(0)
  • 2021-01-30 07:37

    Since Java is okay for you, you could have a look at the Eagle DNS project. It is written in Java and supports both MySQL and file based stores for the records, and allow you to write your own module if that doesn't fit your needs: http://www.unlogic.se/projects/eagledns

    0 讨论(0)
提交回复
热议问题