npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tr-ddns

v1.1.1

Published

Simple DDNS Server

Readme

TR-DDNS

In A Nutshell

TR-DDNS is a simple dynamic-DNS server built on top of dns2 library.

Usage

  tr-ddns [<opt> ...]

Options:
            --debug                          Enable debug messages
  -c <arg>  --config-file=<arg>              Configuration file
            --init-config-file               Initialize configuration file and exit
            --udp                            Enable UDP server
            --udp-listen-address=<arg>       Listen address for UDP server
            --udp-listen-port=<arg>          Listen port for UDP server
            --tcp                            Enable TCP server
            --tcp-listen-address=<arg>       Listen address for TCP server
            --tcp-listen-port=<arg>          Listen port for TCP server
            --http-api                       Enable HTTP-API server
            --http-api-listen-address=<arg>  Listen address for HTTP control server
            --http-api-listen-port=<arg>     Listen port for HTTP-API server
  -h        --help                           Show help and exit

API

All API methods work either with GET method and URL parameters or POST method with JSON payload.

Add Domain

curl 'http://TR-DDNS-ADDR/domain?domain=test-domain.tld'

Fails if the domain already exists or if there is already a domain, which is either a parent domain or a subdomain of the domain that is added.

Remove Domain

Removes also all host records under that domain.

curl 'http://TR-DDNS-ADDR/domain?domain=test-domain.tld&remove=true'

Add or Update Host

Supported records are A, AAAA, MX, and TXT.

curl http://TR-DDNS/host'?host=host1.test.domain.tld?a=1.2.3.4'
curl http://TR-DDNS/host'?host=host2.test.domain.tld?a=1.2.3.4&aaaa=2001:ffff:ffff::dead:beef&mx=my.mail.server.tld'
curl http://TR-DDNS/host'?host=_sometext.test.domain.tld?txt=this-is-probably-some-dynamic-authorization'

Lifetime can be set by ttl parameter, which makes the record disappear after the given number of seconds. Lifetime is common for entire host, so all records of the host are deleted, when the expiration occurs.

curl http://TR-DDNS/host'?host=_hello.test.domain.tld?txt=hello&ttl=3600'

All records for a host can be set with a single call and the subsequent call replace all records of the host and remove previously set records that are not present in the call. This behavior can be overridden by using parameter merge=true, which causes the new records to be merge on top of the old ones and spares the old records that are not present in the call. Mostly this does what you'd expect, but a couple things to keep in mind.

  • Merge does not spare earlier TTL. If you want one, you'll have to submit it in all host calls and if you omit it, also the previously set records become non-expiring.
  • Removing an existing record is done by setting it to an empty string. This DOES NOT actually set it to an empty string, but removes it. If the record is not present at all in the merge call, then the possible old record is left as it is.

Remove Host

curl http://TR-DDNS/host'?host=_hello.test.domain.tld?remove=true

Author

Timo J. Rinne [email protected]

License

MIT License