728x90
반응형
Module 캐싱
Backend/Node.js2024. 12. 14. 23:52Module 캐싱

- Module 캐싱이란?module에서 다른 module을 가져올 때 캐싱(caching)이 일어나게 된다.module 하나를 여러 번 가져와 사용하더라도 module을 그때마다 새롭게 가져오지 않는다.module을 한 번 가져와 사용하는 순간 캐싱이 되기 때문이다. // request.jsconst { read } = require("./response.js");function encrypt(data) { return "encrypted data";}function send(url, data) { const encryptedData = encrypt(data); console.log(`${encryptedData} is being sent to ${url}`);}module.exports = {..

728x90
반응형
image