Chrome 扩展中的 CommonJS
我可以在 Chrome 扩展程序中使用 CommonJS
模块吗?
谢谢 马可
Can I use CommonJS
modules in a Chrome extensions?
Thanks
Marco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以在 Chrome 扩展程序中使用 CommonJS
模块吗?
谢谢 马可
Can I use CommonJS
modules in a Chrome extensions?
Thanks
Marco
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以很好地使用由 RequireJS 实现的 CommonJS 的 AMD 模块系统。
You can use CommonJS's AMD module system as implemented by RequireJS quite nicely.
您可能需要 CommonJS 客户端实现,例如 SeaJS。
You may need a CommonJS client-side implementation, such as SeaJS.
由于 CommonJS 实现是服务器端的,因此将其用作 Chrome 扩展的唯一方法是通过 NPAPI 绑定。如果您正在寻找替代框架,请寻找位于客户端的框架。
希望有帮助!
Since CommonJS implementations are server side, the only way to use that as a Chrome Extension is through NPAPI bindings. If your looking for alternate frameworks, look for ones that live in the client side.
Hope that helped!