Fetch API는 Node 에 내장돼있지 않기 때문에 node-fetch 와 같은 외부모듈을 사용해야한다.
설치
npm install node-fetch
fetch API를 사용하고자 하는 파일 맨 윗줄에 다음과 같이 써줌
import fetch from "node-fetch";