0

Regarding this question: What is the purpose of Node.js module.exports and how do you use it? I'm a Javascript beginner. In the referenced question...

  • [What is the purpose of Node.js module.exports and how do you use it?](https://stackoverflow.com/q/5311334) - what about this question? – VLAZ Jun 02 '21 at 04:46
  • [NodeJS Docs](https://nodejs.org/en/docs/) contain all the information you need. – Yousaf Jun 02 '21 at 04:46
  • Also, what about this question: [What are node.js modules?](https://stackoverflow.com/q/11487493) yours post here is a copy of the beginning part of that one. – VLAZ Jun 02 '21 at 04:47

1 Answers1

0

Consider modules to be the same as JavaScript libraries.

A set of functions you want to include in your application.

https://www.w3schools.com/nodejs/nodejs_modules.asp

Dishant Chanchad
  • 710
  • 3
  • 9
  • 27