Login
Remember
Register
Ask a Question
What is the purpose of module.exports in Node.js?
+1
vote
asked
May 31, 2020
in
NodeJS Essentials
by
Robindeniel
What is the purpose of
module.exports
in Node.js?
#node
js-purpose
#module
exports-node
js
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 31, 2020
by
SakshiSharma
A module encapsulates related code into a single unit of code. This can be interpreted as moving all related functions into a file. Imagine that we created a file called greetings.js and it contains the following two
...