获取有关当前 commonjs 实现的信息
是否有一种标准方法来检测 CommonJS 中的实现(node.js、rhino 等)以及该实现的理想版本。
如果没有,人们要做什么才能得到它?
我正在考虑类似于浏览器世界中的 HTTP User-Agent
标头。
Is there a standard way of detecting the implementation (node.js, rhino etc) and ideally version of that implementation in CommonJS.
If not, what do people do to get it?
I'm thinking something akin to the HTTP User-Agent
header in the browser world.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但你可以检测你是否在节点内,例如:
如果你想绝对确定它是节点:
我不能说对于其他环境,(我从未使用过Rhino) 。
但为了更深入地回答你的问题,Node 并没有它实现的 CommonJS 的严格“版本”。节点尚未长期以来一直迎合 CommonJS 规范现在时间(除了最近的 AMD 实现,无论如何它都不是完整的实现) 。
No, but you could detect whether you're inside node, for example:
If you wanted to be absolutely certain it's node:
I can't say for other environments, (I've never used Rhino).
But to answer your question more in-depth, Node doesn't have a strict "version" of CommonJS it implements. Node hasn't been catering to CommonJS specs for a long time now (aside from the recent AMD implementation, which wasn't a full implementation anyway).