+1 vote
in NodeJS Essentials by

What is the purpose of module.exports in Node.js?

1 Answer

0 votes
by
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
...