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

前端 未结 6 1340
逝去的感伤
逝去的感伤 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: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
    

提交回复
热议问题