Node-fetch


Node-fetch


Fetchは持ってきた意味です
ノード-Fitchはノードです.jsでサードパーティAPI情報を取得するためのライブラリの1つ.もちろんノード.js実行時に互換性のあるAPIを取得します.

NPM


npm install node-fetch

ISSUE

  • Native Promise and Async Function
  • Native Node StreamUsed<<どういう意味ですか?
  • Decode content, encoding properly...
  • Convert String output and res.json() to UTF-8 automatically
  • EXAMPLE

    import fetch from "node-fetch";
    
    const data=fetch(`${API_URL}`)
      .then((res)=>res.json())
      .then((json)=>json.name.name);

    SUGEEST


    安定したフレームワークまたはより多くの機能が必要な場合は、Axiosを使用します.
    しかし、React Nativeのように変化しやすく、または急速に変化するフレームワークでは、ノードfetchは安定性を確保する.
    Axiosはリアルタイムで変化に追随できない可能性があると考えている.関連ドキュメント