- OMDb(The Open Movie Database): 영화 정보 검색 기능 제공

- Query String
- axios: Promise based HTTP client for the browser and node.js ->Promise 객체 기반으로 브라우저나 node.js에서 사용하는 HTTP 요청 처리 패키지
$ npm install axios
import axios from ‘axios’
function fetchMovies() {
axios
.get(‘https://www.omdbapi.com/?apikey=7035c60c&s=frozen’)
.then((res) => {
console.log(res)
const h1El = document.querySelector(‘h1’)
const imgEl = document.querySelector(‘img’)
h1El.textContext = res.data.Search[0].Title
imgEl.src = res.data.Search[0].Poster
})
}