Skip to content

rbltracker/rbltracker-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sign up for a RBLTracker account and visit our developer site for even more details.

Node.js Client Library

The official Node.js binding for your RBLTracker service.

Prerequisites

Before using this library, you must have:

Installation

npm install rbltracker

Quickstart

Get a list of hosts on your account

var client = require('rbltracker')('Your Account SID', 'Your Auth Token');

client.hosts.get({ page_size: 10 }).then(data => {

    data.data.forEach(function(host)
    {
        console.log("Host: " + host.host + ", Name: " + host.name);
    });

}).catch(err => {

    console.log(err);
});

Documentation

Full API documentation is available from the RBLTracker developer site.

Release History

v1.1.0

  • updated to the use the new API endpoint URL
  • added support for Monitoring Profiles, moving away from RBL Profiles
  • added support for the ACLs endpoint to pull the list of DNS servers used for checks

v1.0.1

  • updated to support the RBLTracker API v3.6
  • added manual RBL check support

v1.0.0

  • initial release

About

A Node library for communicating with the RBLTracker REST API

Resources

License

Stars

Watchers

Forks

Packages

No packages published