New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ddns-client

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 0.2.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 29 Jul 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc