NuxtJS应该如何配置jsdom?

How should jsdom be configured with NuxtJS?

我正在尝试在 NuxtJS 上使用 jQuery。按照this tutorial, I obviously get errors saying that jQuery needs a window context. I installed jsdom and all of its dependencies and use it as it should be之后,可是我每次运行npm run dev总是弹出下面的错误:

 ERROR  Failed to compile with 5 errors                                                      friendly-errors 14:13:40

These dependencies were not found:                                                           friendly-errors 14:13:40
                                                                                             friendly-errors 14:13:40
* child_process in ./node_modules/jsdom/lib/jsdom/living/xmlhttprequest.js                   friendly-errors 14:13:40
* fs in ./node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js, ./node_modules/jsdom/lib/jsdom/living/xhr-utils.js and 2 others
                                                                                             friendly-errors 14:13:40
To install them, you can run: npm install --save child_process fs

请注意,这些依赖项确实已安装并且是最新的。这是由于 Nuxt 上的各方冲突吗?如何完全或以其他方式解决?

我还设置了一个插件,通过 jsdom 始终具有默认的 window 上下文:

jsdom.js

var jsdom = require("jsdom")
const { JSDOM } = jsdom

const { document } = new JSDOM("").window
global.document = document

要使用jsdom,您必须修改nuxt.configure.js。修改后nuxt.configure.js,重启nuxt。

export default {
  // some configurations
  build: {
    /*
    ** You can extend webpack config here
    */
    extend (config, { isDev, isClient }) {
      if (isClient) {
        config.node = {
          fs: 'empty',
          child_process: 'empty',
        }
      }
    }
  },
  // other configurations
}

如果您遇到相同的依赖错误,只需在 config.node 中添加相同的设置,如下所示。

          fs: 'empty',
          child_process: 'empty',
          tls: 'empty',
          net: 'empty',

在这种情况下,我认为您实际上不需要在代码中使用 fs,child_process,但它们会阻止您导入 jsdom。 通过上述配置,可以将 fs 和 child_proccess 替换为空对象,并抑制构建错误。因此,如果您尝试使用依赖于这些库的函数,例如使用文件方案获取,将会失败。

有关 config.node 的详细信息记录在此处:https://webpack.js.org/configuration/node/#other-node-core-libraries