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

Commit 87dff04

Browse files
hugomrdiasAlan Shaw
authored and
Alan Shaw
committed
perf: reduce bundle size (#915)
1 parent c3cde76 commit 87dff04

19 files changed

+72
-81
lines changed

.aegir.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const createServer = require('ipfsd-ctl').createServer
55
const server = createServer()
66

77
module.exports = {
8+
bundlesize: { maxSize: '231kB' },
89
webpack: {
910
resolve: {
1011
mainFields: ['browser', 'main']

.travis.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323

2424
- stage: check
2525
script:
26+
- npx aegir build --bundlesize
2627
- npx aegir commitlint --travis
2728
- npx aegir dep-check
2829
- npm run lint
@@ -31,19 +32,13 @@ jobs:
3132
name: chrome
3233
addons:
3334
chrome: stable
34-
script: npx aegir test -t browser
35+
script: npx aegir test -t browser -t webworker
3536

3637
- stage: test
3738
name: firefox
3839
addons:
3940
firefox: latest
40-
script: npx aegir test -t browser -- --browsers FirefoxHeadless
41-
42-
- stage: test
43-
name: webworker
44-
addons:
45-
chrome: stable
46-
script: npx aegir test -t webworker
41+
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
4742

4843
notifications:
4944
email: false

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@
99
<a href="http://ipfs.io/"><img src="https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square" /></a>
1010
<a href="http://webchat.freenode.net/?channels=%23ipfs"><img src="https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square" /></a>
1111
<a href="https://waffle.io/ipfs/js-ipfs"><img src="https://img.shields.io/badge/pm-waffle-blue.svg?style=flat-square" /></a>
12-
<a href="https://github.com/ipfs/interface-ipfs-core"><img src="https://img.shields.io/badge/interface--ipfs--core-API%20Docs-blue.svg"></a>
12+
<a href="https://github.com/ipfs/interface-ipfs-core"><img src="https://img.shields.io/badge/interface--ipfs--core-API%20Docs-blue.svg?style=flat-square"></a>
1313
</p>
1414

1515
<p align="center">
1616
<a href="https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs-http-client?ref=badge_small" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs-http-client.svg?type=small"/></a>
1717
<a href="https://travis-ci.com/ipfs/js-ipfs-http-client"><img src="https://flat.badgen.net/travis/ipfs/js-ipfs-http-client" /></a>
18-
<a href="https://codecov.io/gh/ipfs/js-ipfs-http-client"><img src="https://codecov.io/gh/ipfs/js-ipfs-http-client/branch/master/graph/badge.svg"></a>
18+
<a href="https://codecov.io/gh/ipfs/js-ipfs-http-client"><img src="https://img.shields.io/codecov/c/github/ipfs/js-ipfs-http-client/master.svg?style=flat-square"></a>
19+
<a href="https://bundlephobia.com/result?p=ipfs-http-client"><img src="https://flat.badgen.net/bundlephobia/minzip/ipfs-http-client"></a>
1920
<br>
2021
<a href="https://david-dm.org/ipfs/js-ipfs-http-client"><img src="https://david-dm.org/ipfs/js-ipfs-http-client.svg?style=flat-square" /></a>
2122
<a href="https://github.com/feross/standard"><img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square"></a>
2223
<a href="https://github.com/RichardLitt/standard-readme"><img src="https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square" /></a>
23-
<a href=""><img src="https://img.shields.io/badge/npm-%6E%3D3.0.0-orange.svg?style=flat-square" /></a>
24+
<a href=""><img src="https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square" /></a>
2425
<a href=""><img src="https://img.shields.io/badge/Node.js-%3E%3D10.0.0-orange.svg?style=flat-square" /></a>
2526
<br>
2627
</p>

package.json

+22-27
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"browser": {
88
"glob": false,
99
"fs": false,
10-
"stream": "readable-stream",
11-
"http": "stream-http"
10+
"stream": "readable-stream"
1211
},
1312
"scripts": {
1413
"test": "aegir test",
@@ -20,53 +19,50 @@
2019
"release": "aegir release ",
2120
"release-minor": "aegir release --type minor ",
2221
"release-major": "aegir release --type major ",
23-
"coverage": "aegir coverage --timeout 100000",
24-
"coverage-publish": "aegir coverage --provider coveralls --timeout 100000",
25-
"dep-check": "npx dependency-check package.json './test/**/*.js' './src/**/*.js'"
22+
"coverage": "npx nyc -r html npm run test:node -- --bail"
2623
},
2724
"dependencies": {
2825
"async": "^2.6.1",
2926
"bignumber.js": "^8.0.2",
30-
"bl": "^2.1.2",
27+
"bl": "^3.0.0",
3128
"bs58": "^4.0.1",
3229
"cids": "~0.5.5",
33-
"concat-stream": "^2.0.0",
30+
"concat-stream": "hugomrdias/concat-stream#feat/smaller",
3431
"debug": "^4.1.0",
3532
"detect-node": "^2.0.4",
3633
"end-of-stream": "^1.4.1",
3734
"err-code": "^1.1.2",
3835
"flatmap": "0.0.3",
3936
"glob": "^7.1.3",
4037
"ipfs-block": "~0.8.0",
41-
"ipfs-unixfs": "~0.1.16",
42-
"ipld-dag-cbor": "~0.13.0",
43-
"ipld-dag-pb": "~0.15.0",
44-
"is-ipfs": "~0.4.7",
38+
"ipld-dag-cbor": "~0.13.1",
39+
"ipld-dag-pb": "~0.15.3",
40+
"is-ipfs": "~0.6.0",
4541
"is-pull-stream": "0.0.0",
4642
"is-stream": "^1.1.0",
47-
"libp2p-crypto": "~0.16.0",
48-
"lodash": "^4.17.11",
43+
"iso-stream-http": "~0.1.1",
44+
"iso-url": "~0.4.6",
45+
"just-kebab-case": "^1.1.0",
46+
"just-map-keys": "^1.1.0",
4947
"lru-cache": "^5.1.1",
50-
"multiaddr": "^6.0.0",
48+
"multiaddr": "^6.0.6",
5149
"multibase": "~0.6.0",
5250
"multicodec": "~0.5.0",
5351
"multihashes": "~0.4.14",
54-
"ndjson": "^1.5.0",
52+
"ndjson": "hugomrdias/ndjson#feat/readable-stream3",
5553
"once": "^1.4.0",
56-
"peer-id": "~0.12.1",
57-
"peer-info": "~0.15.0",
54+
"peer-id": "~0.12.2",
55+
"peer-info": "~0.15.1",
5856
"promisify-es6": "^1.0.3",
5957
"pull-defer": "~0.2.3",
60-
"pull-pushable": "^2.2.0",
61-
"pull-stream-to-stream": "^1.3.4",
58+
"pull-stream": "^3.6.9",
59+
"pull-to-stream": "~0.1.0",
6260
"pump": "^3.0.0",
6361
"qs": "^6.5.2",
64-
"readable-stream": "^3.0.6",
65-
"stream-http": "^3.0.0",
62+
"readable-stream": "^3.1.1",
6663
"stream-to-pull-stream": "^1.7.2",
67-
"streamifier": "~0.1.1",
68-
"tar-stream": "^1.6.2",
69-
"through2": "^3.0.0"
64+
"tar-stream": "^2.0.1",
65+
"through2": "^3.0.1"
7066
},
7167
"engines": {
7268
"node": ">=10.0.0",
@@ -77,7 +73,7 @@
7773
"url": "https://github.com/ipfs/js-ipfs-http-client"
7874
},
7975
"devDependencies": {
80-
"aegir": "^18.0.2",
76+
"aegir": "^18.2.1",
8177
"browser-process-platform": "~0.1.1",
8278
"chai": "^4.2.0",
8379
"cross-env": "^5.2.0",
@@ -87,7 +83,6 @@
8783
"interface-ipfs-core": "~0.99.0",
8884
"ipfsd-ctl": "~0.42.0",
8985
"nock": "^10.0.2",
90-
"pull-stream": "^3.6.9",
9186
"stream-equal": "^1.1.1"
9287
},
9388
"keywords": [
@@ -182,4 +177,4 @@
182177
"url": "https://github.com/ipfs/js-ipfs-http-client/issues"
183178
},
184179
"homepage": "https://github.com/ipfs/js-ipfs-http-client"
185-
}
180+
}

src/config/replace.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
'use strict'
22

3-
const streamifier = require('streamifier')
3+
const { Readable } = require('readable-stream')
44
const promisify = require('promisify-es6')
55
const SendOneFile = require('../utils/send-one-file')
66

7+
function toStream (input) {
8+
return new Readable({
9+
read () {
10+
this.push(input)
11+
this.push(null)
12+
}
13+
})
14+
}
15+
716
module.exports = (send) => {
817
const sendOneFile = SendOneFile(send, 'config/replace')
918
return promisify((config, callback) => {
1019
if (typeof config === 'object') {
11-
config = streamifier.createReadStream(Buffer.from(JSON.stringify(config)))
20+
config = toStream(Buffer.from(JSON.stringify(config)))
1221
}
1322

1423
sendOneFile(config, {}, callback)

src/files-mfs/ls-readable-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const {
44
Transform,
55
PassThrough
6-
} = require('stream')
6+
} = require('readable-stream')
77
const pump = require('pump')
88
const ndjson = require('ndjson')
99
const isStream = require('is-stream')

src/files-mfs/stat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const mapKeys = require('lodash/mapKeys')
5-
const kebabCase = require('lodash/kebabCase')
4+
const mapKeys = require('just-map-keys')
5+
const kebabCase = require('just-kebab-case')
66

77
const transform = function (data, callback) {
88
callback(null, {

src/files-regular/add-from-url.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const { URL } = require('url')
5-
const request = require('../utils/request')
4+
const { URL } = require('iso-url')
5+
const { getRequest } = require('iso-stream-http')
66
const SendOneFile = require('../utils/send-one-file-multiple-results')
77
const FileResultStreamConverter = require('../utils/file-result-stream-converter')
88

@@ -37,7 +37,7 @@ const validUrl = (url) => typeof url === 'string' && url.startsWith('http')
3737
const requestWithRedirect = (url, opts, sendOneFile, callback) => {
3838
const parsedUrl = new URL(url)
3939

40-
const req = request(parsedUrl.protocol)(url, (res) => {
40+
const req = getRequest(parsedUrl, (res) => {
4141
if (res.statusCode >= 400) {
4242
return callback(new Error(`Failed to download with ${res.statusCode}`))
4343
}

src/files-regular/add.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const promisify = require('promisify-es6')
44
const ConcatStream = require('concat-stream')
55
const once = require('once')
66
const isStream = require('is-stream')
7-
const isString = require('lodash/isString')
87
const isSource = require('is-pull-stream').isSource
98
const FileResultStreamConverter = require('../utils/file-result-stream-converter')
109
const SendFilesStream = require('../utils/send-files-stream')
@@ -33,7 +32,7 @@ module.exports = (send) => {
3332
// path is optional if content is present
3433
if (obj.content) return isBufferOrStream(obj.content)
3534
// path must be a non-empty string if no content
36-
return Boolean(obj.path) && isString(obj.path)
35+
return Boolean(obj.path) && typeof obj.path === 'string'
3736
}
3837
// An input atom: a buffer, stream or content object
3938
const isInput = obj => isBufferOrStream(obj) || isContentObject(obj)

src/files-regular/get-pull-stream.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
const cleanCID = require('../utils/clean-cid')
44
const TarStreamToObjects = require('../utils/tar-stream-to-objects')
55
const v = require('is-ipfs')
6-
const pull = require('pull-stream')
6+
const pull = require('pull-stream/pull')
7+
const map = require('pull-stream/throughs/map')
78
const toPull = require('stream-to-pull-stream')
89
const deferred = require('pull-defer')
910

@@ -30,7 +31,7 @@ module.exports = (send) => {
3031
p.resolve(
3132
pull(
3233
toPull.source(stream),
33-
pull.map(file => {
34+
map(file => {
3435
const { path, content } = file
3536
return content ? { path, content: toPull.source(content) } : file
3637
})

src/files-regular/ls-pull-stream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const moduleConfig = require('../utils/module-config')
4-
const pull = require('pull-stream')
4+
const values = require('pull-stream/sources/values')
55
const deferred = require('pull-defer')
66
const IsIpfs = require('is-ipfs')
77
const cleanCID = require('../utils/clean-cid')
@@ -54,7 +54,7 @@ module.exports = (arg) => {
5454
type: typeOf(link)
5555
}))
5656

57-
p.resolve(pull.values(result))
57+
p.resolve(values(result))
5858
})
5959

6060
return p

src/pin/ls.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const keys = require('lodash/keys')
54

65
module.exports = (send) => {
76
return promisify((hash, opts, callback) => {
@@ -26,7 +25,7 @@ module.exports = (send) => {
2625
if (err) {
2726
return callback(err)
2827
}
29-
callback(null, keys(res.Keys).map(hash => (
28+
callback(null, Object.keys(res.Keys).map(hash => (
3029
{ hash, type: res.Keys[hash].Type }
3130
)))
3231
})

src/stats/bw-pull-stream.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
'use strict'
22

33
const toPull = require('stream-to-pull-stream')
4-
const pull = require('pull-stream')
4+
const map = require('pull-stream/throughs/map')
5+
const pull = require('pull-stream/pull')
56
const transformChunk = require('./bw-util')
67
const deferred = require('pull-defer')
78

@@ -21,7 +22,7 @@ module.exports = (send) => {
2122

2223
p.resolve(pull(
2324
toPull.source(stream),
24-
pull.map(transformChunk)
25+
map(transformChunk)
2526
))
2627
})
2728

src/utils/multipart.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict'
22

3-
const Transform = require('stream').Transform
3+
const Transform = require('readable-stream').Transform
44
const isNode = require('detect-node')
55
const isSource = require('is-pull-stream').isSource
6-
const toStream = require('pull-stream-to-stream')
6+
const toStream = require('pull-to-stream')
77

88
const PADDING = '--'
99
const NEW_LINE = '\r\n'
@@ -78,7 +78,7 @@ class Multipart extends Transform {
7878
}
7979

8080
if (isSource(content)) {
81-
content = toStream.source(content)
81+
content = toStream.readable(content)
8282
}
8383

8484
// From now on we assume content is a stream

src/utils/request.js

-12
This file was deleted.

src/utils/send-files-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const Duplex = require('stream').Duplex
3+
const { Duplex } = require('readable-stream')
44
const eachSeries = require('async/eachSeries')
55
const isStream = require('is-stream')
66
const once = require('once')

src/utils/send-request.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ const isNode = require('detect-node')
66
const ndjson = require('ndjson')
77
const pump = require('pump')
88
const once = require('once')
9+
const { getRequest } = require('iso-stream-http')
910
const streamToValue = require('./stream-to-value')
1011
const streamToJsonValue = require('./stream-to-json-value')
11-
const request = require('./request')
1212
const log = require('debug')('ipfs-http-client:request')
1313

1414
// -- Internal
@@ -171,7 +171,7 @@ function requestAPI (config, options, callback) {
171171
protocol: `${config.protocol}:`
172172
}
173173

174-
const req = request(config.protocol)(reqOptions, onRes(options.buffer, callback))
174+
const req = getRequest(reqOptions, onRes(options.buffer, callback))
175175

176176
req.on('error', (err) => {
177177
callback(err)

0 commit comments

Comments
 (0)