https://github.com/sindresorhus/got
const got = require('got'); (async () => { try { const response = await got('https://sindresorhus.com'); console.log(response.body); //=> '<!doctype html> ...' } catch (error) { console.log(error.response.body); //=> 'Internal server error ...' } })();
등록된 댓글이 없습니다.