Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

JeffResc/DroneBL-Node.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NPM

DroneBL Build Status

DroneBL IP Address Lookup in Node.js

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