
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
This library provides easy access to point zone & record management. For information about the services offered on Point see the website
To access your Point account, you'll need to define your username & apitoken. The username is your email address and the apitoken is the API token which, can be found in My Account tab.
NPM latest stable version:
npm install pointdns
or NPM most recent version:
npm install git+https://github.com/copper/nodejs-pointdns.git
var pointdns = require('pointdns')({ username:'john@example.com', apitoken:'secret-key' })
pointdns.zone.add({'name': 'example.com'},
function( err, zone ){
console.log('pointdns.zone.add', zone, err )
}
)
pointdns.zones.list({},
function( err, zones ){
console.log('pointdns.zones.list', zones, err )
}
)
pointdns.zones.list({group:'Clients'},
function( err, zones ){
console.log('pointdns.zones.list group Clients', zones, err )
}
)
pointdns.zone.update({zone_id: 1}, {'group':'Services'},
function( err, zone ){
console.log('pointdns.zone.update', zone, err )
}
)
pointdns.zone.get({zone_id: 1},
function( err, zone ){
console.log('pointdns.zone.get', zone, err )
}
)
pointdns.zone.del({zone_id: 1},
function( err, zone ){
console.log('pointdns.zone.del', zone, err )
}
)
pointdns.record.add({'zone_id': 1}, {"name":"site","record_type":"A","data":"1.2.3.4"},
function( err, record ){
console.log('pointdns.record.add', record, err )
}
)
pointdns.record.update({'zone_id': 1, 'record_id': 1}, {"name":"site2","data":"2.3.4.5"},
function( err, record ){
console.log('pointdns.record.update', record, err )
}
)
pointdns.records.list({zone_id: 1},
function( err, records ){
console.log('pointdns.records.list', records, err )
}
)
pointdns.record.get({'zone_id': 1, 'record_id': 1},
function( err, record ){
console.log('pointdns.record.get', record, err )
}
)
pointdns.record.del({'zone_id': 1, 'record_id': 1},
function( err, records ){
console.log('pointdns.record.del', records, err )
}
)
FAQs
pointhq.com API client
The npm package pointdns receives a total of 8 weekly downloads. As such, pointdns popularity was classified as not popular.
We found that pointdns demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.