1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| {
| "name": "request-ip",
| "version": "1.3.0",
| "description": "A small node.js module to retrieve the request's IP address",
| "main": "index.js",
| "repository": {
| "type": "git",
| "url": "https://github.com/pbojinov/request-ip.git"
| },
| "scripts": {
| "test": "node test/index.js | tap-spec",
| "changelog": "github_changelog_generator -t 4c910e93a260e924d44e800b1a4345bf1115c532"
| },
| "keywords": [
| "request ip",
| "ip",
| "address",
| "request",
| "proxy",
| "client",
| "header",
| "X-Real-IP",
| "X-Client-IP",
| "X-Forwarded-For",
| "connection.remoteAddress",
| "middleware",
| "ipv4",
| "ipv6"
| ],
| "author": "Petar Bojinov <petarbojinov@gmail.com>",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/pbojinov/request-ip/issues"
| },
| "homepage": "https://github.com/pbojinov/request-ip",
| "devDependencies": {
| "istanbul": "^0.3.13",
| "request": "^2.54.0",
| "tap-spec": "^3.0.0",
| "tape": "^4.0.0",
| "coveralls": "^2.11.2"
| },
| "dependencies": {}
| }
|
|