Skip to content

JS 使用 GOT 库替代 request

Published: at 03:51 PMSuggest Changes

大名鼎鼎的 request 库不维护了,虽然还能使用,但是作者不建议使用,翻了一下打算用 got 作为替代。

具体见

安装 got 依赖

yarn add got

使用

import { promisify } from 'util';
import stream from 'stream';
import fs from 'fs-extra';
import got from 'got';

const pipeline = promisify(stream.pipeline);

pipeline(
  got.stream('http://xxx.com/xxx.zip'),
  fs.createWriteStream('xxx.zip')
).then(() => {
  console.log('文件下载成功');
});

后记

发现 got 官方 demo 里的有些方法没用过,后面要抽时间了解一下。


Previous Post
LeetCode 523 连续的子数组和
Next Post
JS 可选链操作符