扫一扫分享
r2与 request为同一个作者打造,相比于 request更加轻量、专注,基于现代浏览器的 fetch api,基于 promise, 与 asynv/await搭配更佳。
r2是构建在浏览器的Fetch API之上,并为Node.js填充。 API旨在与async / await一起使用,这意味着它们基于promises。
const r2 = require('r2')
let html = await r2('https://www.google.com').text
Simple JSON support.
let obj = {ok: true}
let resp = await r2.put('http://localhost/test.json', {json: obj}).json
Simple headers support.
let headers = {'x-test': 'ok'}
let res = await r2('http://localhost/test', {headers}).response
手机预览