-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 899 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 899 Bytes
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
{
"name": "chix-dns",
"description": "DNS components for Chiχ",
"author": "Rob Halff <rob.halff@gmail.com>",
"version": "0.0.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodule/dns.git"
},
"engines": {
"node": "0.x.x"
},
"devDependencies": {
"chit": "0.x.x"
},
"scripts": {
"test": "chit"
},
"chix": {
"name": "dns",
"description": "All methods in the dns module use C-Ares except for dns.lookup which uses getaddrinfo(3) in a thread pool. C-Ares is much faster than getaddrinfo but the system resolver is more constant with how other programs operate. When a user does net.connect(80, 'google.com') or http.get({ host: 'google.com' }) the dns.lookup method is used. Users who need to do a large number of lookups quickly should use the methods that go through C-Ares.",
"color": "rgb(136,35,35)"
}
}