객체에 변수나 함수를 정의하고 생성해, 다른 객체에 정보를 넘겨줌으로써 코드의 중복성을 막고 재사용성을 높임.
객체 선언 module.exports = 메소드 이름 module.exports = {a, b,} 호출 const a = require(./파일이름.js);