Bootstrap 4 暗色主题项目教程
bootstrap-dark Bootstrap 4 dark theme that supports togging dark/light themes as well. There is no fluff, it changes the color of Bootstrap and that's it, no new thing to learn or unlearn, just Bootstrap, but Dark! 项目地址: https://gitcode.com/gh_mirrors/bo/bootstrap-dark
1. 项目目录结构及介绍
bootstrap-dark/
├── assets/
│ └── images/
├── dist/
├── samples/
│ └── html/
├── scss/
├── .browserslistrc
├── .gitignore
├── .npmignore
├── .prettierignore
├── LICENSE
├── bs-config.js
├── clean_non_color_attr.js
├── gulpfile.js
├── package-lock.json
├── package.json
├── readme.md
└── version.json
目录结构介绍
- assets/: 存放项目所需的静态资源文件,如图片等。
- dist/: 存放编译后的文件,包括CSS和JavaScript文件。
- samples/: 存放示例文件,展示如何使用该主题。
- scss/: 存放项目的SCSS源文件。
- .browserslistrc: 配置项目支持的浏览器版本。
- .gitignore: 配置Git忽略的文件和目录。
- .npmignore: 配置npm发布时忽略的文件和目录。
- .prettierignore: 配置Prettier忽略的文件和目录。
- LICENSE: 项目的开源许可证文件。
- bs-config.js: BrowserSync配置文件。
- clean_non_color_attr.js: 清理非颜色属性的脚本文件。
- gulpfile.js: Gulp任务配置文件。
- package-lock.json: npm依赖锁定文件。
- package.json: 项目的npm配置文件,包含项目依赖和脚本。
- readme.md: 项目的README文件,包含项目介绍和使用说明。
- version.json: 项目的版本信息文件。
2. 项目的启动文件介绍
启动文件
- gulpfile.js: 该文件是项目的Gulp任务配置文件,用于自动化构建和启动项目。
启动步骤
- 安装依赖: 在项目根目录下运行
npm install
安装项目所需的依赖。 - 启动项目: 运行
npm run watch
启动项目,该命令会启动BrowserSync并监听文件变化。
3. 项目的配置文件介绍
配置文件
- bs-config.js: BrowserSync配置文件,用于配置BrowserSync的行为。
- package.json: 项目的npm配置文件,包含项目依赖、脚本和其他元数据。
- .browserslistrc: 配置项目支持的浏览器版本。
- .gitignore: 配置Git忽略的文件和目录。
- .npmignore: 配置npm发布时忽略的文件和目录。
- .prettierignore: 配置Prettier忽略的文件和目录。
配置文件介绍
- bs-config.js: 该文件配置了BrowserSync的行为,如代理服务器、端口等。
- package.json: 该文件包含了项目的依赖、脚本和其他元数据。例如,
scripts
部分定义了项目的启动命令 npm run watch
。 - .browserslistrc: 该文件定义了项目支持的浏览器版本,用于确保项目在不同浏览器中的兼容性。
- .gitignore: 该文件定义了Git在版本控制中忽略的文件和目录,避免将不必要的文件提交到版本库。
- .npmignore: 该文件定义了npm发布时忽略的文件和目录,避免将不必要的文件发布到npm仓库。
- .prettierignore: 该文件定义了Prettier在格式化代码时忽略的文件和目录,避免对某些文件进行不必要的格式化。
bootstrap-dark Bootstrap 4 dark theme that supports togging dark/light themes as well. There is no fluff, it changes the color of Bootstrap and that's it, no new thing to learn or unlearn, just Bootstrap, but Dark! 项目地址: https://gitcode.com/gh_mirrors/bo/bootstrap-dark