admin管理员组文章数量:1345080
If I attach an object to the module.exports
object in node like so:
module.exports = new Object()
will each object = require('./Object')
throughout my application create a new instance of that object, or will it create a reference to the one instance?
If I attach an object to the module.exports
object in node like so:
module.exports = new Object()
will each object = require('./Object')
throughout my application create a new instance of that object, or will it create a reference to the one instance?
-
2
If you want a new instance for each use, it's probably worth making each create their own instance.
module.exports = Object;
thenvar Object = require('./Object'), object = new Object();
. – Jonathan Lonowski Commented Sep 9, 2013 at 0:47
2 Answers
Reset to default 10require()
caches files that it executes.
The first time you require('./Object')
, it will run your code and place the exported object in require.cache
.
Subsequent calls will return the cached object immediately.
You could remove your module from the cache yourself, or use a getter, but those are bad ideas.
Check out caching caveats in the node docs. You'll get the same object as long as the resolved module path matches. There's an example in this answer of when resolved paths would not match.
本文标签: javascriptModuleexporting a New InstanceStack Overflow
版权声明:本文标题:javascript - Module.export-ing a New Instance - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792542a2539840.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论