NodeJS Bootstrap 依赖项位置

NodeJS Bootstrap dependencies location

我知道 Bootstrap 依赖项涉及在包含 Bootstrap JS 库之前使用 Tether 和 jQuery。我已经通过 package.json 文件安装了 Bootstrap :

"dependencies": {
    [...]
    "bootstrap": "4.0.0-alpha.6",
    [...]
  }

它给我这个输出,我们可以在其中看到依赖关系:

bootstrap@4.0.0-alpha.6 node_modules/bootstrap
├── tether@1.4.0
└── jquery@3.2.1

为了在我的页面中包含 Bootstrap,我使用以下路径:

<link rel="stylesheet" href="/bootstrap/dist/css/bootstrap.min.css">
---
<script src="/bootstrap/dist/js/bootstrap.min.js"></script>

但是在哪里可以找到 Tether 和 jQuery? node_modules 中没有创建的文件夹。

我应该手动安装它们吗?

我找到了。现在看起来很明显...

依赖项包含在 Bootstrap 文件夹中,因此:

node_modules/bootstrap/node_modules/tether
node_modules/bootstrap/node_modules/jquery