0.0.1 • Published 5 years ago

update-ddns v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Update DDNS

Current avaliable DDNS providers

  • Google Domains

Example

import { updateDDNS, Providers, Credentials, Domain } from 'update-ddns';

const credentials: Credentials = {
  username: 'u53rn4m3',
  password: 'p455w0rd'
};

const domain: Domain = {
  address: 'example.com'
};

updateDDNS(Providers.GoogleDomains, credentials, domain)
  .then(response => console.log(response))
  .catch(error => console.log(error));