gpt4 book ai didi

javascript - 在 Electron 中引用 Node 模块?

转载 作者:行者123 更新时间:2023-11-29 21:10:05 30 4
gpt4 key购买 nike

我是 Flex/Actionscript/AIR 世界的新难民,我喜欢使用 Electron、Node 并开始了解使用 Javascript 的一些约定。

问题:我一直在使用下面的方法来引用我在项目中安装的模块。它有效,但我怀疑我“做错了”——主要是因为在“npm install ...”方法的简单性之后,我必须挖掘 node_modules 的内容,找到我刚刚安装的,然后构建它的路径。

我在这里错过了什么?

<script src="../node_modules/video.js/dist/video.min.js"></script>

最佳答案

Node 完全支持 Electron,其中包括 require 作为它的依赖管理器。您可以使用 require 语句来包含模块。
在 js 文件中..

var videojs = require('videojs')

或在 HTML 文件中

<script>
require('videojs')
</script>

Electron FAQ可能会回答其他一些问题。

关于javascript - 在 Electron 中引用 Node 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42146263/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com