[javascript] 제3자 라이브러리를 자바스크립트 모듈로 사용하는 방법은 무엇인가요?
npm install axios
라이브러리를 설치한 후에는 해당 라이브러리를 모듈화하여 사용할 수 있습니다. 예를 들어, axios
를 사용하여 HTTP 요청을 보내려면 다음과 같이 모듈을 import하고 사용할 수 있습니다.
import axios from 'axios';
axios.get('https://api.example.com/data')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
이와 같이 필요한 제3자 라이브러리를 모듈화하여 자바스크립트에서 사용할 수 있습니다.