Skip to content

Commit 7a90eac

Browse files
Initial
0 parents  commit 7a90eac

File tree

4 files changed

+581
-0
lines changed

4 files changed

+581
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
IP2Proxy Node.js Module
2+
=======================
3+
4+
This is the Node.js module to lookup IP2Proxy databases from https://www.ip2location.com/proxy-database
5+
6+
IP2Proxy Database contains IP addresses which are used as VPN anonymizer, open proxies, web proxies and Tor exits. The database includes records for all public IPv4 addresses.
7+
8+
9+
Installation
10+
============
11+
12+
To install this module type the following:
13+
14+
npm install ip2proxy-nodejs
15+
16+
17+
Copyright
18+
=========
19+
Copyright (C) 2017 by IP2Location.com
20+
21+
Licensed under LGPLv3

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "ip2proxy-nodejs",
3+
"version": "1.0.0",
4+
"description": "IP2Proxy proxy detection component",
5+
"keywords": ["ip2proxy", "proxy detection"],
6+
"homepage": "http://www.ip2location.com/ip2proxy/developers/nodejs",
7+
"author": {
8+
"name": "IP2Location.com",
9+
"email": "[email protected]",
10+
"url": "http://www.ip2location.com/"
11+
},
12+
"files": ["src/ip2proxy.js","src/test.js","./README.md"],
13+
"main": "src/ip2proxy.js",
14+
"license" : "LGPL",
15+
"dependencies" : {
16+
"big-integer" : ">=1.6.8"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/ip2location/ip2proxy-nodejs"
21+
}
22+
}

0 commit comments

Comments
 (0)