我知道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中没有创建文件夹。
我应该手动安装吗?
答案 0 :(得分:0)
我找到了。现在看起来很明显......
依赖项包含在Bootstrap文件夹中,所以:
node_modules/bootstrap/node_modules/tether
node_modules/bootstrap/node_modules/jquery