bare-http1 3.5.2 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -10
- package/index.js +7 -4
- package/lib/agent.js +34 -0
- package/lib/client-request.js +4 -2
- package/lib/incoming-message.js +8 -8
- package/lib/outgoing-message.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,29 +6,23 @@ HTTP/1 library for JavaScript.
|
|
|
6
6
|
npm i bare-http1
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
`http.Server` supports most HTTP features, e.g. keep-alive, chunked encoding, and streaming responses.
|
|
10
|
-
|
|
11
|
-
Basic `http.ClientRequest` is implemented, temporarily it does NOT support keep-alive and protocol negotiation.
|
|
12
|
-
|
|
13
9
|
## Usage
|
|
14
10
|
|
|
15
|
-
```
|
|
11
|
+
```js
|
|
16
12
|
const http = require('bare-http1')
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
const server = http.createServer(function (req, res) {
|
|
14
|
+
const server = http.createServer((req, res) => {
|
|
21
15
|
res.statusCode = 200
|
|
22
16
|
res.setHeader('Content-Length', 10)
|
|
23
17
|
res.write('hello world!')
|
|
24
18
|
res.end()
|
|
25
19
|
})
|
|
26
20
|
|
|
27
|
-
server.listen(0,
|
|
21
|
+
server.listen(0, () => {
|
|
28
22
|
const { port } = server.address()
|
|
29
23
|
console.log('server is bound on', port)
|
|
30
24
|
|
|
31
|
-
const client = http.request({ port }, res => {
|
|
25
|
+
const client = http.request({ port }, (res) => {
|
|
32
26
|
res.on('data', (data) => console.log(data.toString()))
|
|
33
27
|
})
|
|
34
28
|
client.end()
|
package/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
exports.IncomingMessage = require('./lib/incoming-message')
|
|
2
2
|
exports.OutgoingMessage = require('./lib/outgoing-message')
|
|
3
3
|
|
|
4
|
+
const Agent = exports.Agent = require('./lib/agent')
|
|
5
|
+
exports.globalAgent = Agent.global
|
|
6
|
+
|
|
4
7
|
const Server = exports.Server = require('./lib/server')
|
|
5
8
|
exports.ServerResponse = require('./lib/server-response')
|
|
6
9
|
exports.ServerConnection = require('./lib/server-connection')
|
|
@@ -41,10 +44,10 @@ exports.request = function request (url, opts, onresponse) {
|
|
|
41
44
|
function defaultPort (url) {
|
|
42
45
|
switch (url.protocol) {
|
|
43
46
|
case 'ftp:': return 21
|
|
44
|
-
case 'http':
|
|
45
|
-
case 'ws': return 80
|
|
46
|
-
case 'https':
|
|
47
|
-
case 'wss': return 443
|
|
47
|
+
case 'http:':
|
|
48
|
+
case 'ws:': return 80
|
|
49
|
+
case 'https:':
|
|
50
|
+
case 'wss:': return 443
|
|
48
51
|
}
|
|
49
52
|
|
|
50
53
|
return null
|
package/lib/agent.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const tcp = require('bare-tcp')
|
|
2
|
+
|
|
3
|
+
module.exports = class HTTPAgent {
|
|
4
|
+
constructor (opts = {}) {
|
|
5
|
+
const {
|
|
6
|
+
keepAlive = false,
|
|
7
|
+
keepAliveMsecs = 1000,
|
|
8
|
+
maxSockets = Infinity,
|
|
9
|
+
maxTotalSockets = Infinity,
|
|
10
|
+
maxFreeSockets = 256,
|
|
11
|
+
timeout = -1
|
|
12
|
+
} = opts
|
|
13
|
+
|
|
14
|
+
this._keepAlive = typeof keepAlive === 'number' ? keepAlive : keepAlive ? keepAliveMsecs : -1
|
|
15
|
+
this._maxSockets = maxSockets
|
|
16
|
+
this._maxTotalSockets = maxTotalSockets
|
|
17
|
+
this._maxFreeSockets = maxFreeSockets
|
|
18
|
+
this._timeout = timeout
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
createConnection (opts) {
|
|
22
|
+
return tcp.createConnection(opts)
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
reuseSocket (socket, req) {
|
|
26
|
+
socket.ref()
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
keepSocketAlive (socket) {
|
|
30
|
+
return false
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
static global = new this({ keepAlive: 1000, timeout: 5000 })
|
|
34
|
+
}
|
package/lib/client-request.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const HTTPAgent = require('./agent')
|
|
2
2
|
const HTTPOutgoingMessage = require('./outgoing-message')
|
|
3
3
|
const HTTPClientConnection = require('./client-connection')
|
|
4
4
|
|
|
@@ -9,8 +9,10 @@ module.exports = class HTTPClientRequest extends HTTPOutgoingMessage {
|
|
|
9
9
|
opts = {}
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
const agent = opts.agent === false ? new HTTPAgent() : opts.agent || HTTPAgent.global
|
|
13
|
+
|
|
12
14
|
const {
|
|
13
|
-
connection = new HTTPClientConnection(
|
|
15
|
+
connection = new HTTPClientConnection(agent.createConnection(opts), opts)
|
|
14
16
|
} = opts
|
|
15
17
|
|
|
16
18
|
super(connection.socket)
|
package/lib/incoming-message.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
const { Readable } = require('bare-stream')
|
|
2
2
|
|
|
3
3
|
module.exports = class HTTPIncomingMessage extends Readable {
|
|
4
|
-
constructor (socket, headers,
|
|
4
|
+
constructor (socket = null, headers = {}, opts = {}) {
|
|
5
5
|
super()
|
|
6
6
|
|
|
7
7
|
this.socket = socket
|
|
8
8
|
this.headers = headers
|
|
9
9
|
this.upgrade = false
|
|
10
10
|
|
|
11
|
-
// Server
|
|
12
|
-
this.method =
|
|
13
|
-
this.url =
|
|
11
|
+
// Server options
|
|
12
|
+
this.method = opts.method || ''
|
|
13
|
+
this.url = opts.url || ''
|
|
14
14
|
|
|
15
|
-
// Client
|
|
16
|
-
this.statusCode =
|
|
17
|
-
this.statusMessage =
|
|
15
|
+
// Client options
|
|
16
|
+
this.statusCode = opts.statusCode || 0
|
|
17
|
+
this.statusMessage = opts.statusMessage || ''
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
get httpVersion () {
|
|
@@ -34,6 +34,6 @@ module.exports = class HTTPIncomingMessage extends Readable {
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
_predestroy () {
|
|
37
|
-
if (this.upgrade === false) this.socket.destroy()
|
|
37
|
+
if (this.upgrade === false && this.socket !== null) this.socket.destroy()
|
|
38
38
|
}
|
|
39
39
|
}
|
package/lib/outgoing-message.js
CHANGED
|
@@ -2,7 +2,7 @@ const { Writable } = require('bare-stream')
|
|
|
2
2
|
const errors = require('./errors')
|
|
3
3
|
|
|
4
4
|
module.exports = class HTTPOutgoingMessage extends Writable {
|
|
5
|
-
constructor (socket) {
|
|
5
|
+
constructor (socket = null) {
|
|
6
6
|
super()
|
|
7
7
|
|
|
8
8
|
this.socket = socket
|
|
@@ -28,7 +28,7 @@ module.exports = class HTTPOutgoingMessage extends Writable {
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
flushHeaders () {
|
|
31
|
-
if (this.headersSent === true) return
|
|
31
|
+
if (this.headersSent === true || this.socket === null) return
|
|
32
32
|
|
|
33
33
|
this.socket.write(Buffer.from(this._header()))
|
|
34
34
|
this.headersSent = true
|
|
@@ -39,6 +39,6 @@ module.exports = class HTTPOutgoingMessage extends Writable {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
_predestroy () {
|
|
42
|
-
if (this.upgrade === false) this.socket.destroy()
|
|
42
|
+
if (this.upgrade === false && this.socket !== null) this.socket.destroy()
|
|
43
43
|
}
|
|
44
44
|
}
|