最新 最热

node zlib压缩模块了解一下

const gzip = zlib.createGzip();const fs = require(‘fs’);const inp = fs.createReadStream(‘index.html’);const out = fs.createWriteStream(‘index.html.gz’);

2022-06-15
0