LoginSignup
2
3

More than 5 years have passed since last update.

axiosを利用する本当に最低限のメモ

Posted at

コンソールに結果を出せればいいだけ。

axiosのインストール

本家サイトに書いてあるのでそのとおりにやればいい。

cd
mkdir axios_test
cd axios_test
npm install axios

WebだとCDNも利用できるみたい。

利用

とりあえずindex.js作って

index.js
const axios = require('axios');

axios.get('http://www.yahoo.co.jp')
    .then(function(response){
        console.log(response);
    });

実行します。上記のコードだとyahooのHTMLがだらだら表示されます。

node index.js
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3