From a1f9bbd59e8e60b169900389da690e6c68816254 Mon Sep 17 00:00:00 2001 From: ShinjiSawada <0ef7mz10388321c@au.com> Date: Wed, 29 Dec 2021 21:51:48 +0900 Subject: [PATCH] =?UTF-8?q?=E7=B7=B4=E7=BF=92=E5=95=8F=E9=A1=8C=E3=81=A7?= =?UTF-8?q?=E3=81=8D=E3=81=9F=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.js b/app.js index ad9a93a..74e1d21 100644 --- a/app.js +++ b/app.js @@ -1 +1,5 @@ 'use strict'; +const axios = require('axios'); +axios.get('https://www.google.com').then(res => { + console.log(res.data); +});