0

In some place i see people using "module.exports" and in others "exports",what is the difference ?

shadrack Mwangi
  • 785
  • 6
  • 14

1 Answers1

2

exports is assigned to module.exports by default. So, they are essentially the same. Unless you reassign exports.

https://nodejs.org/api/modules.html#modules_exports_alias

andrunix
  • 1,704
  • 1
  • 14
  • 23