Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPeter Retvari
Full Stack JavaScript Techdegree Student 8,392 PointsCould you someone explain this part of the code: module.exports.get = get;?
Hi Guys,
Could you someone explain this part of the code:
module.exports.get = get;?
I understand that we have to 'share' it or export it to use it in another file. But why we use get twice? Export.get is the method and on the right side is the function itself? I'm a little confused and would like to make it clear.
Thanks in advance
2 Answers
Adam Pengh
29,881 PointsHere is a great article on using module.exports and exports in Node.js: https://www.sitepoint.com/understanding-module-exports-exports-node-js/
You don't have to use the same value as in module.exports.get = get, but it's common naming convention to use the same value.
Christian Fuchs
Full Stack JavaScript Techdegree Graduate 22,017 PointsAdam Pengh thank you very much, helped me a lot to understand this!
Peter Retvari
Full Stack JavaScript Techdegree Student 8,392 PointsPeter Retvari
Full Stack JavaScript Techdegree Student 8,392 PointsI just checked the article. Many thanks for your quick answer! 👌🏻😉