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

Latest commit

 

History

History
23 lines (15 loc) · 768 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 768 Bytes

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