node.js와 Typescript의 module system 타입스크립트 모듈 시스템은 자바스크립트 최신문법을 계승했기 때문에 차이를 잘 알아야 한다. node.js typescript common.js module.js Javascript file과 Typescript file은 module화 할 수 있다. module화 하는 이유는 * 다른파일에서 사용할 수 있게 해줌. * 가독성과 재사용성을 높히기 위해서 사용함. [node.js에서 module화 하는 방법] const hello = 'module' module.exports = 'hello'; @module.js const hi = require('./module'); @run.js ▶ require만 하면 다시 사용할 수 있다. 객체를 exp..