作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Monkeypatching node.js 中的 require 函数可能会很有用,尤其是对于某些库。我正在努力弄清楚如何才能正确、安全地做到这一点,等等。
这是我的:
const Mod = require('module');
const req = Mod.prototype.require;
Mod.prototype.require = function () {
// do some side-effect of your own
req.apply(this, arguments);
};
但是这不是很有效,我不确定为什么。我从调试模块中得到这个错误:
TypeError: Cannot set property 'init' of undefined
at Object.<anonymous> (/Users/alexamil/WebstormProjects/oresoftware/sumanjs/suman/node_modules/debug/src/node.js:15:14)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at Module.Mod.require (/Users/alexamil/WebstormProjects/oresoftware/sumanjs/suman/lib/index.js:11:9)
at require (internal/module.js:20:19)
at Object.<anonymous> (/Users/alexamil/WebstormProjects/oresoftware/sumanjs/suman/node_modules/debug/src/index.js:9:20)
如果我的代码没问题,那么也许我应该仔细看看调试模块在做什么?
最佳答案
你没有返回结果:
Mod.prototype.require = function () {
// do some side-effect of your own
return req.apply(this, arguments);
};
如果没有 return
,您的包装器将始终返回 undefined
。
关于javascript - 在 Node.js 中安全且正确地猴子修补 require 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42883486/
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我尝试过sp_helpindex,但它显示的是具有索引的列,而不是包含的列。请告诉我如何列出包含列(非键)的所有索引? 最佳答案 针对目录 View 尝试此 T-SQL 查询: SELECT
我是一名优秀的程序员,十分优秀!