Skip to content

Instantly share code, notes, and snippets.

@mdtanrikulu
Created January 20, 2021 10:22
Show Gist options
  • Save mdtanrikulu/a3949b41eb160dc97fd911382e9607aa to your computer and use it in GitHub Desktop.
Save mdtanrikulu/a3949b41eb160dc97fd911382e9607aa to your computer and use it in GitHub Desktop.
Resolve SRV Record
import dns from "dns";
dns.resolveSrv("_girepo._tcp.dev.golem.network", (err, result) => {
console.log(result);
})
/* result
[
{
name: 'yacn.dev.golem.network',
port: 8000,
priority: 1,
weight: 1
}
]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment