I've found the following contract in a node module:
module.exports = exports = nano = function database_module(cfg) {...}
I wonder whats the different between module.export and export and why both are used here.
|
I've found the following contract in a node module:
I wonder whats the different between
| |||
feedback
|
|
There are two main reasons. 1st reasonSetting The following won't work.module.js
server.js
The following will work with
|
|
This question has already been answered well, but would like to supplement the info with this resource: http://www.hacksparrow.com/node-js-exports-vs-module-exports.html | |||
|
feedback
|
|
There is no difference according to the documentation:
It seems like that at first, only | |||||||||
feedback
|