Tag: module.exports in Javascript

Exporting Multiple Functions using module.exports in JS

module.exports is a javascript function created by the module system. It can be used to export function in a Module. Earlier we had discussed... Read more »

module.exports in Javascript – Node JS, Express

Module.exports is used with creating new module in javascript. Certain functionality of the app can be moved to a separate module. And it can... Read more »