前端基础建设与架构 - 前百度资深前端开发工程师 - 拉勾教育

前端生态有着与生俱来的混乱和与之抗衡的秩序,有着新生力量的崛起以及随之而来的规范约束。在这个背景下,正面来看,欣欣向荣的前端生态带来了广阔的发展前景,但也造成了一些困扰。比如,我们都经历过在前端基础设施建设中,被各种冗杂的配置项困扰,一不小心就是 Error,步履蹒跚。也许我们可以通过搜索引擎暂时解决问题,但是恍恍惚惚、难以洞悉问题本源。

另一方面,前端生态的重要一环是公共库。公共库的模块化规范、编译标准,甚至压缩方式都有讲究,同时公共库与使用它们的业务项目也要密切配合,这样才能打造一个顺滑的基建结果。请你仔细审视手上的项目,编译构建过程是否做到了最高效,产出代码是否达到了最高级别的安全保障,是否做到了性能体验的最佳实践?

这一讲,就让我们从公共库的角度出发,梳理当前前端生态,最终还原一个趋近完美的公共库设计标准。

从一个公共库处理的问题,谈如何做好 “扫雷人”

这一部分,让我们以一篇网红文章 “报告老板,我们的 H5 页面在 iOS 11 系统上白屏了!” 开始,我先简单梳理和总结一下文章内容:

  • 笔者发现某些机型上出现页面白屏情况;
  • 出现在报错页面上的信息非常明显,即当前浏览器不支持...扩展运算符;
  • 出错的代码(使用了扩展运算符的代码)属于某个公共库代码,它没有使用 Babel 插件进行降级处理,因此线上源代码出现了...扩展运算符。

现在问题找到了,或许直接将出现问题的公共库代码用 Babel 进行编译降级就可以了,但问题似乎还会更加复杂。在文中环境下,需要在vue.config.js中加入对问题公共库module-name/library-name的 Babel 编译流程:

  1. transpileDependencies: [
  2. 'module-name/library-name'
  3. ],

vue-cli 对transpileDependencies 也有如下说明:

默认情况下 babel-loader 会忽略所有node_modules中的文件。如果你想要通过 Babel 显式转译一个依赖,可以在这个选项中列出来。

按照上述操作,却得到了新的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'。究其原因,module-name/library-name这个库对外输出的是 CommonJS 类型源码,而项目基础设施中 babel-transform-runtime 在编译时增加的 helper 代码,使用的是 import 引入。最终编译结果出现了 ESM 包含 CommonJS 的情况,是不会被 Webpack 处理的

出现问题的原因总结如下:

  • plugin-transform-runtime 会根据 sourceType 选择注入 import 或者 require,sourceType 的默认值是 module,就会默认注入 import;
  • Webpack 不会处理包含 import/export 的文件中的 module.exports 导出,所以需要让 Babel 自动判断 sourceType,根据文件内是否存在 import/export 来决定注入什么样的代码。

为了适配上述问题,Babel 设置了sourceType属性,sourceType:unambiguous表示 Babel 会根据文件上下文(比如是否含有 import/export)来决定是否按照 ESM 语法处理文件。

这时候就需要配置 Babel 内容了:

  1. module.exports = {
  2. ...
  3. sourceType: 'unambiguous',
  4. ...
  5. }

但是这种做法在工程上并不推荐,上述更改方式对所有编译文件都生效,但也增加了编译成本(因为设置sourceType:unambiguous后,编译时需要做的事情更多),还有个潜在问题

Unambiguous can be quite useful in contexts where the type is unknown, but it can lead to false matches because it’s perfectly valid to have a module file that does not use import/export statements.

翻译过来,就是说并不是所有的 ESM 模块(这里指使用 ESNext 特性的文件)都含有 import/export,因此即便某个待编译文件属于 ESM 模块,也可能被 Babel 错误地判断为 CommonJS 模块而引发误判。

基于这一点,一个更合适的做法是:只对目标第三方库'module-name/library-name'使用sourceType:unambiguous,这时,Babel overrides 属性就派上用场了:

Allows users to provide an array of options that will be merged into the current configuration one at a time. This feature is best used alongside the “test”/“include”/“exclude” options to provide conditions for which an override should apply.

具体使用方式:

  1. module.exports = {
  2. ...
  3. overrides: [
  4. { include: './node_modules/module-name/library-name/name.common.js',
  5. sourceType: 'unambiguous'
  6. }
  7. ],
  8. ...
  9. };

至此,这个 “iOS 11 系统白屏” 问题就算告一段落了。我整理了解决路线,如下图所示:

08 | 探索前端工具链生态,制定一个统一标准化 babel-preset - 图1

我们回过头再来看这个问题,实际上业务方对线上测试回归不彻底是造成问题的直接原因,但问题其实出现在一个公共库上,因而前端生态的混乱和复杂也许是更本质的原因。这里涉及两方面问题:

  • 作为公共库,我应该如何构建编译代码,让业务方更有保障地使用?
  • 作为使用者,我应该如何处理第三方公共库,是否还需要对其进行额外编译和处理?

被动地发现问题、解决问题只会让我们被 “牵着鼻子走”——这不是我们的目的。我们应该从更底层拆解问题,下面我们就来看看更底层的内容。

应用项目构建和公共库构建的差异

首先我们要认清应用项目构建和公共库构建的差别。作为前端团队,我们构建了很多应用项目,对于一个应用项目来说,“只要能在需要兼容的环境中跑起来” 就达到了基本目的。而对于一个公共库来说,我们的公共库可能被各种环境所引用或需要支持各种兼容需求,因此公共库就要兼顾性能和易用性,要注重质量和广泛度。由此看来,公共库理论上构建机制就更加复杂。

说到底,如果你能够设计好一个公共库,那么通常也能使用好一个公共库。因此,下面我们重点讨论如何设计并产出一个企业级公共库,以及如何在业务中更好地配合使用。

制定一个企业级公共库的设计原则

这里说的企业级公共库主要是指在企业内复用的公共库,它可以被发布到 npm 上进行社区共享,也可以在企业内的私有 npm 中限定范围地共享。总之,企业级公共库是需要在业务中被使用的。我认为一个企业级公共库的设计原则应该包括以下几点。

  1. 对于开发者共创公共库,最大化确保开发体验
  • 最快地搭建调试和开发环境
  • 安全地发版维护
  1. 对于使用者,最大化确保使用体验
  • 公共库文档建设完善
  • 公共库质量有保障
  • 接入和使用负担最小

基于上述原则,在团队里,设计一个公共库前,你需要考虑:

  • 自研公共库还是使用社区已有轮子;
  • 公共库的运行环境是什么,这将决定公共库的编译构建目标;
  • 公共库是偏向业务还是业务 free,这将决定公共库的职责和边界。

上述内容并非纯理论原则,而是直接决定了公共库实现的技术选型。比如,为了实现更完善的文档建设,尤其是 UI 组件类文档,可以考虑部署静态组件展示站点,进行组件展示以及用法说明。更智能、工程化的内容,我们可以考虑使用类似 JSDoc 来实现 JavaScript API 文档生成,组件类公共库可以考虑 Storybook 或者 Styleguides 作为标准接入方案。

再比如,我们的公共库适配环境是什么?一般来讲可能需要兼容:浏览器 / Node.js / 同构环境等。不同环境对应了不同的编译和打包标准,这就需要你进行思考:如果目标是浏览器环境,那么如何才能充分实现性能最优解?如帮助业务方实现 tree-shaking 等优化技术。

同时,为了减轻业务使用负担,作为企业级公共库,以及对应使用这些企业级公共库的应用项目,可以指定标准规范的 babel-preset,保证编译产出的统一。这样一来,业务项目(即使用公共库方)可以以统一的接入标准引入。

下面是我基于对目前前端生态的理解,草拟的一份 babel-preset(该 preset 设计方案具有时效性)。请继续阅读下文,我们来对 @lucas/babel-preset 一探究竟。

制定一个统一标准化 babel-preset

企业中,所有公共库或应用项目都使用一套 @lucas/babel-xxx-preset,按照 @lucas/babel-xxx-preset 的编译要求进行编译,这样业务使用时,接入标准统一。

原则上讲,这样的统一化能够有效避免本文开头的 “线上问题”。同时这个 @lucas/babel-preset 应该能够适应各种项目需求,比如使用 TypeScript/Flow 等扩展语法的项目。

这里给出一份设计方案,供你参考和讨论。

  1. 支持 NODE_ENV = ‘development’ | ‘production’ | ‘test’ 三种环境,并有对应的优化。
  2. 配置插件默认不开启 Babelloose: true配置,让插件的行为尽可能地遵循规范,但对有较严重性能损耗或有兼容性问题的情况保留修改入口。
  3. 这份设计方案落地后产出,应该支持应用编译和公共库编译,即可以按照 @lucas/babel-preset/app,@lucas/babel-preset/dependencies 和 @lucas/babel-preset/library,@lucas/babel-preset/library/compact 进行区分使用(具体不同预设集合的角色,下面会详细展开)。

@lucas/babel-preset/app,@lucas/babel-preset/dependencies 都可以作为编译应用项目的预设使用,但他们也有所差别,具体如下:

  • @lucas/babel-preset/app 负责编译除node_modules外的业务代码;
  • @lucas/babel-preset/dependencies 编译node_modules第三方代码;
  • @lucas/babel-preset/library 和 @lucas/babel-preset/library/compact 作为编译公共库使用的预设,他们也有所差别,@lucas/babel-preset/library 按照当前 Node 环境编译输出代码,而 @lucas/babel-preset/library/compact 会编译降级为 ES5。
  1. 对于企业级公共库,建议使用标准 ES 特性发布;对 tree-shaking 有强烈需求的库,应同时发布 ES module 格式代码。
  2. 对于企业级公共库,发布的代码不包含 polyfills,由使用方统一处理。
  3. 对于应用编译,使用 @babel/preset-env 同时编译应用代码与第三方库代码。
  4. 对于应用编译,需要对node_modules进行编译,并且为node_modules配置sourceType: 'unambiguous',以确保第三方依赖包中的 CommonJS 模块能够被正确处理。
  5. 对于应用编译,启用 plugin-transform-runtime,避免同样的 helper 代码被重复注入多个文件,以缩减打包后文件的体积。同时自动注入 regenerator-runtime,避免污染全局变量。
  6. 注入绝对路径引用的 @babel/runtime 包中对应的 helper,以确保能够引用到正确版本的 @babel/runtime 包中的文件。

此外,第三方库可能通过 dependencies 依赖自己的 @babel/runtime,而 @babel/runtime 不同版本之间不能确保兼容 (比如 6.x 和 7.x 之间),这就需要确保我们为node_modules内代码经过 Babel 编译注入 runtime 时使用正确路径的 @babel/runtime 包。

基于以上设计,对于 CSR 应用的 Babel 编译流程,预计业务方使用预设为:

  1. module.exports = {
  2. presets: ['@lucas/babel-preset/app'],
  3. }
  4. module.exports = {
  5. module: {
  6. rules: [
  7. {
  8. test: /\.js$/,
  9. oneOf: [
  10. {
  11. exclude: /node_modules/,
  12. loader: 'babel-loader',
  13. options: {
  14. cacheDirectory: true,
  15. },
  16. },
  17. {
  18. loader: 'babel-loader',
  19. options: {
  20. cacheDirectory: true,
  21. configFile: false,
  22. presets: ['@lucas/babel-preset/dependencies'],
  23. compact: false,
  24. },
  25. },
  26. ],
  27. },
  28. ],
  29. },
  30. }

我们可以看到,上述使用方式按照node_modules进行了区分,对于node_modules我们开启 cacheDirectory 缓存。对于应用,我们直接使用 babel-loader 进行编译,并使用@lucas/babel-preset/dependencies这个 Babel preset,其内容为:

  1. const path = require('path')
  2. const {declare} = require('@babel/helper-plugin-utils')
  3. const getAbsoluteRuntimePath = () => {
  4. return path.dirname(require.resolve('@babel/runtime/package.json'))
  5. }
  6. module.exports = ({
  7. targets,
  8. ignoreBrowserslistConfig = false,
  9. forceAllTransforms = false,
  10. transformRuntime = true,
  11. absoluteRuntime = false,
  12. supportsDynamicImport = false,
  13. } = {}) => {
  14. return declare(
  15. (
  16. api,
  17. {modules = 'auto', absoluteRuntimePath = getAbsoluteRuntimePath()},
  18. ) => {
  19. api.assertVersion(7)
  20. return {
  21. sourceType: 'unambiguous',
  22. exclude: /@babel\/runtime/,
  23. presets: [
  24. [
  25. require('@babel/preset-env').default,
  26. {
  27. useBuiltIns: false,
  28. modules,
  29. targets,
  30. ignoreBrowserslistConfig,
  31. forceAllTransforms,
  32. exclude: ['transform-typeof-symbol'],
  33. },
  34. ],
  35. ],
  36. plugins: [
  37. transformRuntime && [
  38. require('@babel/plugin-transform-runtime').default,
  39. {
  40. absoluteRuntime: absoluteRuntime ? absoluteRuntimePath : false,
  41. },
  42. ],
  43. require('@babel/plugin-syntax-dynamic-import').default,
  44. !supportsDynamicImport &&
  45. !api.caller(caller => caller && caller.supportsDynamicImport) &&
  46. require('babel-plugin-dynamic-import-node'),
  47. [
  48. require('@babel/plugin-proposal-object-rest-spread').default,
  49. {loose: true, useBuiltIns: true},
  50. ],
  51. ].filter(Boolean),
  52. env: {
  53. test: {
  54. presets: [
  55. [
  56. require('@babel/preset-env').default,
  57. {
  58. useBuiltIns: false,
  59. targets: {node: 'current'},
  60. ignoreBrowserslistConfig: true,
  61. exclude: ['transform-typeof-symbol'],
  62. },
  63. ],
  64. ],
  65. plugins: [
  66. [
  67. require('@babel/plugin-transform-runtime').default,
  68. {
  69. absoluteRuntime: absoluteRuntimePath,
  70. },
  71. ],
  72. require('babel-plugin-dynamic-import-node'),
  73. ],
  74. },
  75. },
  76. }
  77. },
  78. )
  79. }

基于以上设计,对于 SSR 应用的编译流程(需要编译适配 Node.js 环境)使用方法为:

  1. const target = process.env.BUILD_TARGET
  2. module.exports = {
  3. target,
  4. module: {
  5. rules: [
  6. {
  7. test: /\.js$/,
  8. oneOf: [
  9. {
  10. exclude: /node_modules/,
  11. loader: 'babel-loader',
  12. options: {
  13. cacheDirectory: true,
  14. presets: [['@lucas/babel-preset/app', {target}]],
  15. },
  16. },
  17. {
  18. loader: 'babel-loader',
  19. options: {
  20. cacheDirectory: true,
  21. configFile: false,
  22. presets: [['@lucas/babel-preset/dependencies', {target}]],
  23. compact: false,
  24. },
  25. },
  26. ],
  27. },
  28. ],
  29. },
  30. }

我们同样按照node_modules进行了区分,对于node_modules第三方依赖,使用@lucas/babel-preset/dependencies预设,同时传入target参数。对于非node_modules的业务代码,使用@lucas/babel-preset/app这个预设,同时设定相应环境 target,@lucas/babel-preset/app内容为:

  1. const path = require('path')
  2. const {declare} = require('@babel/helper-plugin-utils')
  3. const getAbsoluteRuntimePath = () => {
  4. return path.dirname(require.resolve('@babel/runtime/package.json'))
  5. }
  6. module.exports = ({
  7. targets,
  8. ignoreBrowserslistConfig = false,
  9. forceAllTransforms = false,
  10. transformRuntime = true,
  11. absoluteRuntime = false,
  12. supportsDynamicImport = false,
  13. } = {}) => {
  14. return declare(
  15. (
  16. api,
  17. {
  18. modules = 'auto',
  19. absoluteRuntimePath = getAbsoluteRuntimePath(),
  20. react = true,
  21. presetReactOptions = {},
  22. },
  23. ) => {
  24. api.assertVersion(7)
  25. return {
  26. presets: [
  27. [
  28. require('@babel/preset-env').default,
  29. {
  30. useBuiltIns: false,
  31. modules,
  32. targets,
  33. ignoreBrowserslistConfig,
  34. forceAllTransforms,
  35. exclude: ['transform-typeof-symbol'],
  36. },
  37. ],
  38. react && [
  39. require('@babel/preset-react').default,
  40. {useBuiltIns: true, runtime: 'automatic', ...presetReactOptions},
  41. ],
  42. ].filter(Boolean),
  43. plugins: [
  44. transformRuntime && [
  45. require('@babel/plugin-transform-runtime').default,
  46. {
  47. useESModules: 'auto',
  48. absoluteRuntime: absoluteRuntime ? absoluteRuntimePath : false,
  49. },
  50. ],
  51. [
  52. require('@babel/plugin-proposal-class-properties').default,
  53. {loose: true},
  54. ],
  55. require('@babel/plugin-syntax-dynamic-import').default,
  56. !supportsDynamicImport &&
  57. !api.caller(caller => caller && caller.supportsDynamicImport) &&
  58. require('babel-plugin-dynamic-import-node'),
  59. [
  60. require('@babel/plugin-proposal-object-rest-spread').default,
  61. {loose: true, useBuiltIns: true},
  62. ],
  63. require('@babel/plugin-proposal-nullish-coalescing-operator').default,
  64. require('@babel/plugin-proposal-optional-chaining').default,
  65. ].filter(Boolean),
  66. env: {
  67. development: {
  68. presets: [
  69. react && [
  70. require('@babel/preset-react').default,
  71. {
  72. useBuiltIns: true,
  73. development: true,
  74. runtime: 'automatic',
  75. ...presetReactOptions,
  76. },
  77. ],
  78. ].filter(Boolean),
  79. },
  80. test: {
  81. presets: [
  82. [
  83. require('@babel/preset-env').default,
  84. {
  85. useBuiltIns: false,
  86. targets: {node: 'current'},
  87. ignoreBrowserslistConfig: true,
  88. exclude: ['transform-typeof-symbol'],
  89. },
  90. ],
  91. react && [
  92. require('@babel/preset-react').default,
  93. {
  94. useBuiltIns: true,
  95. development: true,
  96. runtime: 'automatic',
  97. ...presetReactOptions,
  98. },
  99. ],
  100. ].filter(Boolean),
  101. plugins: [
  102. [
  103. require('@babel/plugin-transform-runtime').default,
  104. {
  105. useESModules: 'auto',
  106. absoluteRuntime: absoluteRuntimePath,
  107. },
  108. ],
  109. require('babel-plugin-dynamic-import-node'),
  110. ],
  111. },
  112. },
  113. }
  114. },
  115. )
  116. }

而对于一个公共库,使用方式为:

  1. module.exports = {
  2. presets: ['@lucas/babel-preset/library'],
  3. }

对应@lucas/babel-preset/library内容为:

  1. const create = require('../app/create')
  2. module.exports = create({
  3. targets: {node: 'current'},
  4. ignoreBrowserslistConfig: true,
  5. supportsDynamicImport: true,
  6. })

这里的预设会将公共库按照当前 Node.js 环境标准编译。如果需要将该公共库编译降级到 ES5,需要使用@lucas/babel-preset/library/compact内容为:

  1. const create = require('../app/create')
  2. module.exports = create({
  3. ignoreBrowserslistConfig: true,
  4. supportsDynamicImport: true,
  5. })

这里的../app/create.js即为上述@lucas/babel-preset/app内容。

我们通过图示来表述整体架构:

08 | 探索前端工具链生态,制定一个统一标准化 babel-preset - 图2

需要说明以下内容。

1. @lucas/babel-preset/app:
应用项目使用,编译项目代码。SSR 项目可以配置参数 target: ‘web’ | ‘node’。默认支持 JSX 语法,并支持一些常用的语法提案(如 class properties)。

  • web:开启全部 transforms
  • node:编译到 node: ‘current’

2. @lucas/babel-preset/dependencies:应用项目使用,编译 node_modules。SSR 项目可以配置参数 target: ‘web’ | ‘node’。只支持当前 ES 规范包含的语法,不包含 JSX 语法及提案中的语法支持

  • web:开启全部 transforms
  • node:编译到 node: ‘current’

3. @lucas/babel-preset/library: 公共库项目使用。用于 prepare 阶段的 Babel 编译。(如 ./src 通过 Babel 编译到 ./lib)。默认支持 JSX 语法,并支持一些常用的语法提案(如 class properties)。编译到 node: ‘current’。如果需要将 library 编译为 ES5,需要使用 @lucas/babel-preset/library/compat;library 打包编译为 UMD,使用 @lucas/babel-preset/app。

上述设计,我参考了facebook/create-react-app部分内容,建议你阅读源码,并结合注释理解其细节,比如对于 transform-typeof-symbol 的编译

  1. (isEnvProduction || isEnvDevelopment) && [
  2. require('@babel/preset-env').default,
  3. {
  4. useBuiltIns: 'entry',
  5. corejs: 3,
  6. exclude: ['transform-typeof-symbol'],
  7. },
  8. ],

在使用@babel/preset-env时,使用了useBuiltIns: 'entry'设置 polyfills,同时将@babel/plugin-transform-typeof-symbol排除在外,这是因为@babel/plugin-transform-typeof-symbol会劫持 typeof 特性,使得代码运行时变慢。相关讨论可参见 issue

最后,这里的预设规范并不代表完全的最佳实践,而是以 React 技术栈风格,统一一个企业级公共库和接入准则,Babel 编译预设可以按照实际项目和企业的需要进行设计,这里更多是一个启迪的作用。

总结

这一讲我们从一个 “线上问题” 出发,剖析了公共库和应用方的不同编译理念,并通过设计一个万能 Babel 预设,阐明了公共库的编译和应用的使用需要密切配合,才能在当前前端生态中保障一个更合理的基础建设根基。相关知识并未完结,我们将在下一讲中,从零打造一个公共库来实践说明相关理论。

08 | 探索前端工具链生态,制定一个统一标准化 babel-preset - 图3