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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@masx200/deno-ddns-over-https-client

v1.6.2

Published

可以和 deno-dns-over-https-server 一起使用

Downloads

4

Readme

deno-ddns-over-https-client

可以和 deno-dns-over-https-server 一起使用

使用方法

deno run -A ./run_ddns_interval_client.ts --name=xxxxxx-xxxx.xxxxx.xxx.xxx --service_url=https://xxxxxxxxxxxxxxxxxx.xxxxx.xxxxxxxx/dns_records --token=xxxxxxxxxxxxxxxxxxxxxxxx

命令参数

  • interval: 数值,表示更新间隔时间(单位:毫秒),默认为 30000.
  • ipv4: 布尔值,表示是否启用 IPv4 地址,默认为 true.
  • ipv6: 布尔值,表示是否启用 IPv6 地址,默认为 true.
  • tailscale: 布尔值,表示是否启用 Tailscale 地址,默认为 false.
  • public: 布尔值,表示是否启用公共地址,默认为 true.
  • get_ip_url:布尔值或字符串,向服务器查询本机的公共地址,可以为多个字符串,逗号分割,默认为
[
    "https://ipv6.ident.me/",
    "https://ipv4.ident.me/",
    "https://speed4.neu6.edu.cn/getIP.php",
    "https://speed.neu6.edu.cn/getIP.php",
    "https://api4.ipify.org",
    "https://api6.ipify.org/",
    "https://api-ipv6.ip.sb/ip",
    "https://api-ipv4.ip.sb/ip"
]
  • private: 布尔值,表示是否启用私有地址,忽略回环地址,默认为 false。
  • token: 字符串,表示 API 令牌,必须的.
  • name: 字符串,表示 主机域名,可以有多个域名,用逗号分隔,必须的.
  • service_url: 字符串,表示 DDNS 服务 URL,必须的.
  • 必须的参数: token /name/ service_url.
  • interfaces:布尔值或字符串,表示是否启用接口地址,忽略回环地址,或者可以是多个 接口名,用逗号分隔,比如 eth0,eth1.默认为 false.