dronebldeprecated

DroneBL IP Address Lookup

Usage no npm install needed!

<script type="module">
  import dronebl from 'https://cdn.skypack.dev/dronebl';
</script>

README

NPM

DroneBL Build Status

DroneBL IP Address Lookup in Node.js

Also check out my BarracudaCentral and SpamCop packages.

Example Lookup:

First run npm install dronebl to install the DroneBL package to your system.

var DroneBL = require('dronebl');

DroneBL.lookup('8.8.8.8', function(res) {
    console.log(res); //Returns false since 8.8.8.8 is not listed
});

DroneBL.lookup('213.163.51.164', function(res) {
    console.log(res); //Returns true since 213.163.51.164 is listed
});

This Package Is Under The MIT License