Socket
Socket
Sign inDemoInstall

ddns-client

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

ddns-client

A dynamic DNS client for Dynamic DNS Update API compatible services like DynDNS and Google Domains


Version published
Maintainers
1
0

Weekly downloads

Readme

Source

ddns-client

A dynamic DNS client for Dynamic DNS Update API compatible services like DynDNS and Google Domains.

Usage

CLI

Installation
npm install -g ddns-client
Updating a Domain Name
ddns-client update foo.example.com -u BJtkgqWBqBwcE6cX -p NXlOLv34MZVS0JH9
More Information
ddns-client help

API

Installation
npm install ddns-client
Updating a Domain Name
const ddns = require('ddns-client')

const response = await updateFQDN('foo.example.com', {
  username: 'BJtkgqWBqBwcE6cX',
  password: 'NXlOLv34MZVS0JH9',
})

if (response === false) {
  console.log('No update was required.')
} else {
  console.log(response)
}
More Information

See index.d.ts.

FAQs

Last updated on 29 Jul 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc