forked from DavidWells/analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetSize.js
51 lines (43 loc) · 1.49 KB
/
getSize.js
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
45
46
47
48
49
50
51
const path = require('path')
const safeChalk = require('safe-chalk')
const gzipSize = require('gzip-size')
const brotliSize = require('brotli-size')
const prettyBytes = require('pretty-bytes')
const chalk = safeChalk()
function formatSize(size, filename, type, raw) {
const pretty = raw ? `${size}B` : prettyBytes(size)
const color = size < 5000 ? 'green' : size > 40000 ? 'red' : 'yellow'
const MAGIC_INDENTATION = type === 'br' ? 13 : 10
const prefix = ' '.repeat(MAGIC_INDENTATION - pretty.length)
return `${prefix}${chalk[color](pretty)}: ${chalk.white(path.basename(filename))}.${type}`
}
function pretty(size, raw) {
return raw ? `${size}kb` : prettyBytes(size)
}
function formatBytes(bytes, decimals = 2) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ['bytes', 'kb', 'mb', 'gb', 'tb', 'pb'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
const type = sizes[i]
const space = type === 'bytes' ? ' ' : ''
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + space + type;
}
async function getSizeInfo(code, filename) {
const raw = code.length < 5000
const gzip = await gzipSize(code)
const brotli = await brotliSize(code)
const gzipLog = formatSize(gzip, filename, 'gz', raw)
const brotliLog = formatSize(brotli, filename, 'br', raw)
return {
size: formatBytes(gzip),
gzip: pretty(gzip, raw),
brotli: pretty(brotli, raw),
gzipLog,
brotliLog
}
}
module.exports = {
getSizeInfo
}