2.0.3 • Published 2 years ago

njalla-dns v2.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
2 years ago

node-njalla-dns

njal.la node.js API client. Manipulate your njalla domains programmatically. Now using official nja.la API 🎉

const njalla = require('njalla-dns')

;(async function main() {
    // Initialize your client with your API key (You can grab one at njal.la/settings/api/)
    const dns = njalla('131ecf5e2090419e8bfd94f71d612ddc')
    
    // Get domains for the connected accounts
    const domains = await dns.getDomains() // [ { name: 'romualdr.io', status: 'active', expiry: '2020-02-10T12:15:46Z' } ]

    // Add an entry
    await dns.add(domains[0], 'A', 'www', '192.168.10.0', 3600)

    // Update an entry
    await dns.update(domains[0], 'www', { 'content': '192.168.10.1' })
    
    // Remove this entry
    await dns.remove(domains[0], 'www')

    // Print all your records for a domain
    console.log(await dns.getRecords(domains[0]))
})()

Getting Started

Features

  • Easy to use
  • Promises
  • Get domains
  • Get records
  • Add record
  • Update record
  • Remove record

Documentation

njalla(key)

Initialize the connection with njalla.

parametertypedescriptionexample
keystringAn API key (string)'131ecf5e2090419e8bfd94f71d612ddc'
const njalla = require('njalla-dns')

;(async function main() {
    // Initialize your client with your API key (You can grab one at njal.la/settings/api/)
    await njalla('131ecf5e2090419e8bfd94f71d612ddc')
})()
signaturedescription
returns an object with all methods

getDomains()

Retrieves domains attached to the connected account

const njalla = require('njalla-dns')

;(async function main() {
    // initialize
    const dns = await njalla('131ecf5e2090419e8bfd94f71d612ddc')
    
    // Get domains
    const domains = await dns.getDomains() // [ { name: 'romualdr.io', status: 'active', expiry: '2020-02-10T12:15:46Z' } ]
})()
signaturedescription
returns Promise<domain[]>An array of domains
throws AxiosError()Underlying HTTP error

getRecords(domain)

parametertypedescriptionexample
domainstring or objectDomains for which you want to retrieve records'mydomain.io' or a domain object
const njalla = require('njalla-dns')

;(async function main() {
    // initialize
    const dns = await njalla('131ecf5e2090419e8bfd94f71d612ddc')
    
    // Get domains
    const domains = await dns.getRecords('mydomain.io') // [ { type: 'A', content: '192.168.0.1', ttl: 3600, name: 'www' } ]
})()
signaturedescription
returns Promise<Object[]>An array of records
throws Error('Invalid credentials. Please check your API key.')Invalid API key
throws Error('An error occured: error.')njal.la error
throws AxiosError()Underlying HTTP error

add(domain, type, name, content , ttl)

parametertypedescriptionexample
domainstringthe domain you want to add a record on'mydomain.io'
typestringRecord type'A', 'AAA', 'MX', 'TXT', 'CNAME', ...
namestringRecord name'www'
contentstringRecord content as string'192.168.1.1'
ttloptional, numberTime to live (default: 3600)10800
const njalla = require('njalla-dns')

;(async function main() {
    // initialize
    const dns = await njalla('131ecf5e2090419e8bfd94f71d612ddc')
    
    // ttl is optional (defaults to 10800)
    await dns.add('mydomain.io', 'A', 'www', '192.168.10.0', 3600)
})()
signaturedescription
returns Promise<Object[]>An array of records after addition
throws Error('Invalid credentials. Please check your API key.')Invalid API key
throws Error('An error occured: error.')njal.la error
throws AxiosError()Underlying HTTP error

remove(domain, record)

parametertypedescriptionexample
domainstringthe domain you want to add a record on'mydomain.io'
recordobject or stringRecord name or object from getRecords(domain){ id: 150, name: 'www', type: 'A' }
const njalla = require('njalla-dns')

;(async function main() {
    // initialize
    const dns = await njalla('131ecf5e2090419e8bfd94f71d612ddc')

    // Remove 'www' record
    await dns.remove('mydomain.io', 'www')

    // alternatively - you can directly use a record for getRecords
    const records = await dns.getRecords('mydomains.io')
    await dns.remove('mydomain.io', records[0])
})()
signaturedescription
returns Promise<Object[]>An array of records after removal
throws Error('No records matched the requested record.')Record doesn't exists
throws Error('Invalid credentials. Please check your API key.')Invalid API key
throws Error('An error occured: error.')njal.la error
throws AxiosError()Underlying HTTP error

update(domain, record, update)

parametertypedescriptionexample
domainstringthe domain you want to add a record on'mydomain.io'
recordobject or stringRecord name or object from getRecords(domain){ id: 150, name: 'www', type: 'A' }
updateobjectUpdate object{ content: '192.168.0.199' }
update.contentoptional, stringUpdate the content of the record'192.168.0.199'
const njalla = require('njalla-dns')

;(async function main() {
    // initialize
    const dns = await njalla('131ecf5e2090419e8bfd94f71d612ddc')

    // Get records
    const records = await getRecords('mydomain.io')

    // Update record
    await update('mydomain.io', records.find((r) => r.name === 'www'), { content: '192.168.10.199' })

    // Alternatively - **please note** that this will fail if you have multiple records with the same name 
    await update('mydomain.io', 'www', { content: '192.168.10.199' })
})()
signaturedescription
returns Promise<Object[]>An array of records after update
throws Error('Too many record(s) found for this query. Please provide a more precise query')nja.la allows multiple times the same record - we need a more precise record input
throws Error('No record(s) found for this query. Please provide a more precise query')record not found
throws Error('Invalid credentials. Please check your API key.')Invalid API key
throws Error('An error occured: error.')njal.la error
throws AxiosError()Underlying HTTP error

Contributing

Feel free to submit a pull request if you want to improve something.

Missing as of Mars 2021

  • tests
  • a lot of njal.la API functions

Motivations

I needed this to make another project - which will be available soon on GitHub aswell.

2.0.3

2 years ago

2.0.1

2 years ago

2.0.0

3 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago