A TypeScript library for smart DNS methods, supporting various DNS records and providers.
Go to file
2020-02-15 16:46:46 +00:00
.vscode BREAKING CHANGE(core): now uses Google DNS HTTPS API and handles DNSSEC validation 2020-02-15 16:41:37 +00:00
test fix(core): update 2020-02-15 16:46:04 +00:00
ts fix(core): update 2020-02-15 16:46:04 +00:00
.gitignore BREAKING CHANGE(core): now uses Google DNS HTTPS API and handles DNSSEC validation 2020-02-15 16:41:37 +00:00
.gitlab-ci.yml BREAKING CHANGE(core): now uses Google DNS HTTPS API and handles DNSSEC validation 2020-02-15 16:41:37 +00:00
npmextra.json fix(core): update 2020-02-15 16:46:04 +00:00
package-lock.json 4.0.1 2020-02-15 16:46:04 +00:00
package.json 4.0.1 2020-02-15 16:46:04 +00:00
readme.md fix(core): update 2020-02-15 16:46:46 +00:00
tslint.json fix(core): update 2019-01-07 00:21:15 +01:00

@pushrocks/smartdns

smart dns methods written in TypeScript

Status for master

pipeline status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

const mySmartDns = new smartdns.SmartDns(); // uses Google DNS Https API
const demoRecord = await mySmartDns.getRecord('example.com', 'AAAA'); // returns promise
/*
demoRecord looks like this:
{
  name: 'example.com',
  type: 'A',
  dnsSecEnabled: true,
  value: '104.24.103.243'
}
*/

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer