in English
包裹
了解如何使用 Parcel 在您的項目中包含 Bootstrap。
在本頁面
安裝包裹
安裝包裹捆綁器。
安裝引導程序
使用 npm將引導程序安裝為 Node.js 模塊。
Bootstrap 依賴於屬性中指定的Popper 。peerDependencies
這意味著您必須確保將它們都添加到您的package.json
using 中npm install @popperjs/core
。
全部完成後,您的項目結構如下:
project-name/
├── build/
├── node_modules/
│ └── bootstrap/
│ └── popper.js/
├── scss/
│ └── custom.scss
├── src/
│ └── index.html
│ └── index.js
└── package.json
導入 JavaScript
在應用的入口點(通常是)中導入Bootstrap 的 JavaScript 。src/index.js
如果您只需要其中的一個子集,您可以將我們所有的插件導入一個文件或單獨導入。
// Import all plugins
import * as bootstrap from 'bootstrap';
// Or import only needed plugins
import { Tooltip as Tooltip, Toast as Toast, Popover as Popover } from 'bootstrap';
// Or import just one
import Alert as Alert from '../node_modules/bootstrap/js/dist/alert';
導入 CSS
要充分利用 Bootstrap 的潛力並根據您的需要對其進行自定義,請將源文件用作項目捆綁過程的一部分。
創建自己的scss/custom.scss
來導入 Bootstrap 的 Sass 文件,然後覆蓋內置的自定義變量。
構建應用
包括src/index.js
在結束</body>
標記之前。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="./index.js"></script>
</body>
</html>
編輯package.json
在文件中添加dev
和腳本。build
package.json
"scripts": {
"dev": "parcel ./src/index.html",
"prebuild": "npx rimraf build",
"build": "parcel build --public-url ./ ./src/index.html --experimental-scope-hoisting --out-dir build"
}
運行開發腳本
您的應用程序將可在 訪問http://127.0.0.1:1234
。
npm run dev
構建應用程序文件
構建的文件在build/
文件夾中。
npm run build