如何在 Javascript 中安装库 'When'

How to install library 'When' in Javascript

我有 2 个文件:index.html 和 index.js。我正在使用它们来尝试进行高速公路通信。高速公路可以用,但 'When' 不可用。

我使用 bower 下载并安装了 Autobahn,然后从 html 中手动包含 autobahn.js。我对When做了同样的操作,但是When库中出现错误。

Index.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Testing Autobahn</title>
</head>

<body>
<p> Fancy paragraph! </p>

<!--Bower-->
<script src="./bower_components/module/module.js"></script>
<script src="./bower_components/autobahn/autobahn/autobahn.min.js"></script>
<script src="./bower_components/when/when.js"></script>

<!--Node.js-->
<!--<script src="./node_modules/autobahn/lib/autobahn.js"></script>-->

<!--Browserify-->
<!--<script src="./bundle.js"></script>-->

<!--The actual main script file-->
<script type="text/javascript" src="index.js"></script>
</body>
</html>

当我在网络浏览器中打开 index.html 时,我得到以下信息:

找到答案了。交易是使用 npm 安装库。之后,在 node-modules 文件夹中有 2 个包含库的文件夹: 1)高速公路浏览器 2) 当

像这样包含它们之后,它就像一个魅力: