컨트롤러를 만들면서 exports.이름 = … 형식으로 함수를 내보내 주었습니다. 이렇게 내보낸 코드는 다음 형식으로 불러올 수 있습니다.
const 모듈이름 = require('파일이름'); 모듈이름.이름();
require('./posts.ctrl')을 입력하여 방금 만든 posts.ctrl.js 파일을 불러온다면 다음 객체를 불러오게 됩니다.
{ write: Function, list: Function, read: Function, remove: Function, replace: Function, update: Function, };