Git Product home page Git Product logo

vercel-dns's Introduction

vercel-dns

List and update DNS records through Vercels API.
Want home.yourdomain.com to point to your home IP? This little CLI (and node module) lets you do that easily.

Installation

# Install the `vercel-dns` binary globally, for CLI-usage
npm install -g vercel-dns

# Or, install the module locally to use the API
npm install --save vercel-dns

CLI usage

$ vercel-dns --help

  List and update DNS records through Vercels API

  Usage
    $ vercel-dns list|update --domain <domain> --record <recordId> --token <apiToken>

  Options
    --current-ip Use the current, public IPv4 address as the new value
    --value <someValue> Value to set for the record
    --ttl <ttl> TTL for the domain record
    --domain <domain> Domain name to list records for
    --record <recordId> DNS record ID to update
    --token <apiToken> API token used for authentication

  Examples
    # List DNS records your API key has access to
    $ vercel-dns list --token myApiToken

    # Update a record with a specific value
    $ vercel-dns --domain my.domain --record recordId --value 193.212.1.10 --token myApiToken

    # Update a record with your current external IP
    $ vercel-dns --domain home.my.domain --record recordId --current-ip --token myApiToken

  Environment variables (fallbacks for missing flags)
    --domain = VERCEL_DOMAIN_NAME
    --record = VERCEL_RECORD_ID
    --token = VERCEL_API_TOKEN

Node usage

Requires Node 14 or above.

import {update, list} from 'vercel-dns'

update({
  value: '193.212.1.10', // IP to update record with
  token: 'yourVercelToken', // Vercel API key
  record: 'rec_vercelRecordId', // Vercel zone ID
}).then((newRecord) => {
  console.log('New record:', newRecord)
})

License

MIT-licensed. See LICENSE.

vercel-dns's People

Contributors

rexxars avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.