반응형
https://malwareanalysis.tistory.com/185글에서 자바스크립트(es6) import, export를 공부했었습니다.
만약, 한개의 함수 또는 변수만 export하고싶은 상황에는 named, default export 중 뭐가 더 좋을까요?
정답은 없지만.. 많은 예제에서 export default를 사용합니다. 아래 예제에서는 express router를 내보내기 위해 export default를 사용했습니다.
import { express } from "express";
const router = express.Router();
router.get("/hello", (req, res, next) => {
console.info("--- hello api is called ---");
});
export default router;
반응형
'전공영역 공부 기록' 카테고리의 다른 글
proxmox를 이용하여 쿠버네티스 설치 완성 (0) | 2021.11.16 |
---|---|
nodejs에서 ES6 import, export사용하는 방법 (0) | 2021.11.10 |
자바스크립트(es6) export default (0) | 2021.11.10 |
21.11.9일 일하면서 알게 된 것 (0) | 2021.11.09 |
스프링시큐리티 3편 - 컨트롤러에서 로그인 정보 조회 (0) | 2021.11.01 |