0

我正在尝试构建一个使用 d3 的模块,但我不想将 d3 与该模块捆绑在一起,而且至关重要的是,我不想将 d3 绑定到窗口。该模块将安装在另一个项目中,npm 作为 git 依赖项。在模块上我有一个这样的设置:

output: {
    path: path.resolve(__dirname, '../dist'),
    filename: '[name].min.js',
    libraryTarget: 'umd',
    umdNamedDefine: true
  },
  externals: [
    {
      "d3": {
        root: "d3"
      }
    }
  ]

在项目中它被安装到我想要这样的东西:

import d3 from 'd3'
import example from 'example'

但是,只有当我也这样做时才有效:

import d3 from 'd3'
window.d3=d3
import example from 'example'

是否可以在不触及全局范围的情况下使用这两个模块?

4

2 回答 2

0

尝试改变

  externals: [
    {
      "d3": {
        root: "d3"
      }
    }
  ]

  externals: [
    {
      "d3": {
        commonjs: "d3"
      }
    }
  ]

在文档中描述。通过设置为root,库应该可以作为全局变量使用

于 2018-05-08T15:48:51.330 回答
0

因为这两个模块是分开存在的,所以它们都有自己的闭包。共享第三个依赖项的唯一地方是两者外部的范围,传统上是全局范围。你可以练习依赖注入。

所以,而不是

module.exports = function do_a_thing() {
  // use d3 here
}

你做

module.exports = function do_a_thing_generator(d3) {
  return function do_a_thing() {
    // use d3 here
  }
}

然后,最终

import d3 from 'd3'
import exampleInit from 'example'

const example = exampleInit(d3)
于 2018-05-09T11:05:37.600 回答