바닐라 JS로 어떤 라이브러리를 동적으로 포함하고 해당 라이브러리가 완전히 로딩되었을때 코드를 실행하는 방식
const url = "https://~.min.js"; const htmlMeshScript = document.createElement("script"); htmlMeshScript.type = "module"; htmlMeshScript.src = url; document.body.appendChild(htmlMeshScrip); htmlMeshScript.onload = (event) => { console.log("loaded"); };