Skip to main content Skip to docs navigation

Bootstrap 和 Parcel

官方指南:如何使用 Parcel 在项目中引入和打包 Bootstrap 的 CSS 和 JavaScript。

想直接跳到最后吗?twbs/examples 仓库 下载本指南的源代码和运行演示。你也可以在 StackBlitz 中打开示例,但无法运行,因为 Parcel 目前不支持那里。

什么是 Parcel?

🌐 What is Parcel?

Parcel 是一个网页应用打包工具,旨在通过开箱即用的零配置设置简化开发过程。它提供了在更高级打包工具中可以找到的功能,同时注重易用性,使其非常适合寻求快速启动的开发者。

设置

🌐 Setup

我们正在从零开始使用 Bootstrap 构建一个 Parcel 项目,因此在真正开始之前,有一些先决条件和前期步骤。本指南要求你已安装 Node.js 并对终端有一定的熟悉程度。

🌐 We’re building a Parcel project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.

  1. 创建一个项目文件夹并设置 npm。 我们将创建 my-project 文件夹,并使用 -y 参数初始化 npm,以避免它询问我们所有的交互式问题。

    mkdir my-project && cd my-project
    npm init -y
    
  2. 安装 Parcel。 与我们的 Webpack 指南不同,这里只有一个构建工具依赖。Parcel 会在检测到时自动安装语言转换器(如 Sass)。我们使用 --save-dev 来表示这个依赖仅用于开发,不用于生产。

    npm i --save-dev parcel
    
  3. 安装 Bootstrap。 现在我们可以安装 Bootstrap。我们还将安装 Popper,因为我们的下拉菜单、弹出框和工具提示依赖它来定位。如果你不打算使用这些组件,可以在此省略安装 Popper。

    npm i --save bootstrap @popperjs/core
    

现在我们已经安装了所有必要的依赖,我们可以开始创建项目文件并导入 Bootstrap。

🌐 Now that we have all the necessary dependencies installed, we can get to work creating the project files and importing Bootstrap.

项目结构

🌐 Project structure

我们已经创建了 my-project 文件夹并初始化了 npm。现在我们还将创建 src 文件夹、样式表和 JavaScript 文件,以完善项目结构。在 my-project 中运行以下命令,或者手动创建下面显示的文件夹和文件结构。

🌐 We’ve already created the my-project folder and initialized npm. Now we'll also create our src folder, stylesheet, and JavaScript file to round out the project structure. Run the following from my-project, or manually create the folder and file structure shown below.

mkdir {src,src/js,src/scss}
touch src/index.html src/js/main.js src/scss/styles.scss

完成后,你的完整项目应如下所示:

🌐 When you’re done, your complete project should look like this:

my-project/
├── src/
│   ├── js/
│   │   └── main.js
│   ├── scss/
│   │   └── styles.scss
│   └── index.html
├── package-lock.json
└── package.json

此时,一切都已就绪,但 Parcel 需要 HTML 页面和 npm 脚本来启动我们的服务器。

🌐 At this point, everything is in the right place, but Parcel needs an HTML page and npm script to start our server.

配置 Parcel

🌐 Configure Parcel

在安装了依赖并且我们的项目文件夹已准备好开始编码之后,我们现在可以配置 Parcel 并本地运行我们的项目。Parcel 本身按照设计不需要配置文件,但我们确实需要一个 npm 脚本和一个 HTML 文件来启动我们的服务器。

🌐 With dependencies installed and our project folder ready for us to start coding, we can now configure Parcel and run our project locally. Parcel itself requires no configuration file by design, but we do need an npm script and an HTML file to start our server.

  1. 填写 src/index.html 文件。 Parcel 需要一个页面来渲染,因此我们使用我们的 index.html 页面来设置一些基本的 HTML,包括我们的 CSS 和 JavaScript 文件。

    <!doctype html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Bootstrap w/ Parcel</title>
        <link rel="stylesheet" href="scss/styles.scss">
        <script type="module" src="js/main.js"></script>
      </head>
      <body>
        <div class="container py-4 px-3 mx-auto">
          <h1>Hello, Bootstrap and Parcel!</h1>
          <button class="btn btn-primary">Primary button</button>
        </div>
      </body>
    </html>
    

    我们在这里包含了一点 Bootstrap 样式,使用 div class="container"<button>,这样我们就能看到 Parcel 加载了 Bootstrap 的 CSS。

    Parcel 会自动检测我们正在使用 Sass,并安装 Sass Parcel 插件 来支持它。但是,如果你愿意,你也可以手动运行 npm i --save-dev @parcel/transformer-sass

  2. 添加 Parcel npm 脚本。 打开 package.json,并将以下 start 脚本添加到 scripts 对象中。我们将使用此脚本启动 Parcel 开发服务器,并在 HTML 文件编译到 dist 目录后渲染它。

    {
       // ...
       "scripts": {
         "start": "parcel serve src/index.html --public-url / --dist-dir dist",
         "test": "echo \"Error: no test specified\" && exit 1"
       },
       // ...
    }
    
  3. 最后,我们可以启动 Parcel。 在终端的 my-project 文件夹中,运行刚添加的 npm 脚本:

    npm start
    
    Parcel dev server running

在本指南的下一部分也是最后一部分中,我们将导入 Bootstrap 的所有 CSS 和 JavaScript。

🌐 In the next and final section to this guide, we'll import all of Bootstrap’s CSS and JavaScript.

导入 Bootstrap

🌐 Import Bootstrap

将 Bootstrap 导入 Parcel 需要两个导入,一个导入到我们的 styles.scss,一个导入到我们的 main.js

🌐 Importing Bootstrap into Parcel requires two imports, one into our styles.scss and one into our main.js.

  1. 导入 Bootstrap 的 CSS。src/scss/styles.scss 中添加以下内容以导入所有 Bootstrap 的源 Sass。

    // Import all of Bootstrap’s CSS
    @import "bootstrap/scss/bootstrap";
    

    如果你愿意,你也可以单独导入我们的样式表。阅读我们的 Sass 导入文档了解详情。

    可选: 使用最新版本的 Dart Sass 时,你可能会看到 Sass 弃用警告。可以通过在根文件夹中的 .sassrc.js 文件中添加以下配置来关闭这些警告:

    module.exports = {
      silenceDeprecations: ['import', 'mixed-decls', 'color-functions', 'global-builtin']
    }
    
  2. 导入 Bootstrap 的 JS。src/js/main.js 中添加以下内容以导入所有 Bootstrap 的 JS。Popper 将通过 Bootstrap 自动导入。

    // Import all of Bootstrap’s JS
    import * as bootstrap from 'bootstrap'
    

    你还可以根据需要单独导入 JavaScript 插件,以缩小包大小:

    import Alert from 'bootstrap/js/dist/alert'
    
    // or, specify which plugins you need:
    import { Tooltip, Toast, Popover } from 'bootstrap'
    

    阅读我们的 JavaScript 文档 以获取有关如何使用 Bootstrap 插件的更多信息。

  3. 你完成了!🎉 当 Bootstrap 的源 Sass 和 JS 完全加载后,你的本地开发服务器现在应该看起来像这样:

    Parcel dev server running with Bootstrap

    现在你可以开始添加你想要使用的任何 Bootstrap 组件。一定要查看完整的 Parcel 示例项目,了解如何包含额外的自定义 Sass,并通过只导入你需要的 Bootstrap CSS 和 JS 部分来优化你的构建。


See something wrong or out of date here? Please open an issue on GitHub. Need help troubleshooting? Search or start a discussion on GitHub.