Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 023d204

Browse files
fhinkeleddiemoore
authored andcommittedSep 11, 2018
Use small HTTP dependency (#110)
Replace request with teeny-request. Improve startup time by 400 ms. request is a large module because it has so many options and features. That requires both extra bandwidth and space, and also extra time to load and parse the module every time codecov is run. Uploading the reports only uses a minimal subset of request's features. request can easily be switched out with a much more lightweight dependency.
1 parent 500f308 commit 023d204

File tree

3 files changed

+970
-1205
lines changed

3 files changed

+970
-1205
lines changed
 

‎lib/codecov.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var fs = require('fs')
22
var path = require('path')
3-
var request = require('request')
3+
var request = require('teeny-request').teenyRequest
44
var urlgrey = require('urlgrey')
55
var jsYaml = require('js-yaml')
66
var walk = require('ignore-walk')
@@ -146,11 +146,12 @@ var sendToCodecovV2 = function(
146146
on_failure
147147
) {
148148
// Direct to Codecov
149-
request.post(
149+
request(
150150
{
151-
url: urlgrey(codecov_endpoint + '/upload/v2')
151+
uri: urlgrey(codecov_endpoint + '/upload/v2')
152152
.query(query)
153153
.toString(),
154+
method: 'POST',
154155
body: upload_body,
155156
headers: {
156157
'Content-Type': 'text/plain',
@@ -180,11 +181,12 @@ var sendToCodecovV3 = function(
180181
on_failure
181182
) {
182183
// Direct to S3
183-
request.post(
184+
request(
184185
{
185-
url: urlgrey(codecov_endpoint + '/upload/v4')
186+
uri: urlgrey(codecov_endpoint + '/upload/v4')
186187
.query(query)
187188
.toString(),
189+
method: 'POST',
188190
body: '',
189191
headers: {
190192
'Content-Type': 'text/plain',
@@ -202,9 +204,10 @@ var sendToCodecovV3 = function(
202204
)
203205
} else {
204206
var codecov_report_url = result.split('\n')[0]
205-
request.put(
207+
request(
206208
{
207-
url: result.split('\n')[1],
209+
uri: result.split('\n')[1],
210+
method: 'PUT',
208211
body: upload_body,
209212
headers: {
210213
'Content-Type': 'text/plain',
@@ -299,8 +302,9 @@ var upload = function(args, on_success, on_failure) {
299302

300303
var yamlToken
301304
try {
302-
var loadedYamlFile = jsYaml.safeLoad(fs.readFileSync(query.yaml, 'utf8'))
303-
yamlToken = loadedYamlFile && loadedYamlFile.codecov && loadedYamlFile.codecov.token
305+
var loadedYamlFile = jsYaml.safeLoad(fs.readFileSync(query.yaml, 'utf8'))
306+
yamlToken =
307+
loadedYamlFile && loadedYamlFile.codecov && loadedYamlFile.codecov.token
304308
} catch (e) {
305309
// silently fail
306310
}

‎package-lock.json

+956-1,195
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"argv": "^0.0.2",
3030
"ignore-walk": "^3.0.1",
3131
"js-yaml": "^3.12.0",
32-
"request": "^2.87.0",
32+
"teeny-request": "^3.7.0",
3333
"urlgrey": "^0.4.4"
3434
},
3535
"devDependencies": {

0 commit comments

Comments
 (0)
This repository has been archived.