강의

멘토링

커뮤니티

Inflearn Community Q&A

powerstudy's profile image
powerstudy

asked

Practical development process through Yoon Jae-seong's Vue.js project

33rd lecture bulletin board related page settings 2

module.exports는 어떤 의미인지 궁금합니다!

Resolved

Written on

·

266

0

module.exports는 어떤 의미인지 궁금합니다. module.exports에 할당을 하는 것인가요?

vuejs

Answer 1

0

softcampus님의 프로필 이미지
softcampus
Instructor

require를 통해 모듈을 지정하면 해당 코드에서 모듈이 제공되는 기능을 사용할 수 있습니다. 근데 이 과정에서 require 함수는 정확히 해당 모듈에 있는 module.exports를 반환합니다. 그래서 module.exports에 함수를 넣어주면 require 함수를 사용하여 모듈을 사용하는 곳에서 함수를 사용할 수 있게 됩니다.

powerstudy's profile image
powerstudy

asked

Ask a question