admin管理员组文章数量:1345076
I use Webpack in order to build my javascript of my website.
Everything work perfectly but I would like to call require into a template (added dynamically).
I want to be able to require a module after the build. (require is not defined into the global context).
Is it possible ?
Thx
I use Webpack in order to build my javascript of my website.
Everything work perfectly but I would like to call require into a template (added dynamically).
I want to be able to require a module after the build. (require is not defined into the global context).
Is it possible ?
Thx
Share Improve this question asked Apr 29, 2014 at 13:18 Frédéric GRATIFrédéric GRATI 8051 gold badge6 silver badges19 bronze badges1 Answer
Reset to default 8An option which is available to you now is to create a context which you expose globally on window
. I've had success using the following snippet:
// Create a `require` function in the global scope so that scripts that have
// not been webpack'd yet can still access them.
window["require"] = function (module) {
return require("./public_modules/" + module + ".js");
}
Basically what you're doing is exposing a folder to webpack and telling it to pack all the files in that folder in to a chunk. You can then type var moduleName = require("module-name")
outside of a webpack'd script.
As long as the above snippet is inside a file which gets bundled and evaluated, you will have a function defined on window
(coincidentally named "require" but you can call it anything) which will use webpack's require functionality.
本文标签: javascriptrequire a module with webpackStack Overflow
版权声明:本文标题:javascript - require a module with webpack - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743756108a2533539.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论