node.js - WSL 上的 NodeJS+Webpack+Docker 项目使用 native 'fs' 库抛出错误

标签 node.js docker webpack windows-subsystem-for-linux

我有一个 NodeJS 项目,正在使用 Webpack 构建并在 Docker 容器内运行。这是在 Linux 环境中开发的,但我决定尝试将其转移到 WSL(Linux 的 Windows 子系统),因为这会让开发团队的工作变得更容易。但让它在 WSL 上运行一直很困难。

目前项目构建没有任何问题,Docker 似乎也运行顺利。但是,当我在浏览器上打开该项目时,没有加载任何内容。控制台上出现以下错误消息:

Uncaught TypeError: Cannot read property 'native' of undefined
    at Object../node_modules/fs-extra/lib/fs/index.js (index.js:107)
    at __webpack_require__ (bootstrap:19)
    at Object../node_modules/fs-extra/lib/index.js (index.js:6)
    at __webpack_require__ (bootstrap:19)
    at Object.<anonymous> (RollingFileWriteStream.js:2)
    at Object../node_modules/streamroller/lib/RollingFileWriteStream.js (RollingFileWriteStream.js:265)
    at __webpack_require__ (bootstrap:19)
    at Object../node_modules/streamroller/lib/index.js (index.js:2)
    at __webpack_require__ (bootstrap:19)
    at Object.<anonymous> (file.js:3)

当我检查 index.js:107 时,我看到以下几行:

// fs.realpath.native only available in Node v9.2+
if (typeof fs.realpath.native === 'function') {
  exports.realpath.native = u(fs.realpath.native)
}

但是,我运行的所有 Node 版本都是 10+。我的基础镜像是 node:12 (更具体地说,版本 12.13.0)。 WSL 上的 Nodejs 和 npm 版本是:

me@computer:.../addin$ nodejs --version
v12.11.1
me@computer:.../addin$ npm --version
6.12.0

Windows 上的 NodeJS 是:

PS H:\> node --version
v10.15.3

我不确定这是否相关,但这是我的 webpack 配置文件:

webpack.server.config.js:

const path = require('path')
const webpack = require('webpack')
const nodeExternals = require('webpack-node-externals')
module.exports = {
  entry: {
    server: './src/server/server.js',
  },
  output: {
    path: path.join(__dirname, 'dist'),
    publicPath: '/',
    filename: '[name].js'
  },
  target: 'node',
  node: {
    // Need this when working with express, otherwise the build fails
    __dirname: false,   // if you don't put this is, __dirname
    __filename: false,  // and __filename return blank or /
    fs: 'empty'
  },
  externals: [nodeExternals()], // Need this to avoid error when working with Express
  module: {
    rules: [
      {
        // Transpiles ES6-8 into ES5
        test: /\.js$/,
        exclude: /node_modules/,
        use: {
          loader: "babel-loader"
        }
      }
    ]
  }
}

webpack.config.js:

const path = require("path")
const webpack = require('webpack')
const HtmlWebPackPlugin = require("html-webpack-plugin")

module.exports = {
  entry: {
    main: './src/js/index.tsx'
  },
  output: {
    path: path.join(__dirname, 'dist'),
    publicPath: '/',
    filename: '[name].js'
  },
  target: 'web',
  devtool: 'source-map',
  resolve: {
    extensions: ['.ts', '.tsx', '.html', '.js']
  },
  module: {
    rules: [
      {
        test: /\.tsx?$/,
        exclude: /node_modules/,
        use: 'ts-loader'
      },
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: "babel-loader",
      },
      {
        // Loads the javacript into html template provided.
        // Entry point is set below in HtmlWebPackPlugin in Plugins
        test: /\.html$/,
        use: [
          {
            loader: "html-loader",
            //options: { minimize: true }
          }
        ]
      },
      {
        test: /\.css$/,
        use: [ 'style-loader', 'css-loader' ]
      },
      {
       test: /\.(png|svg|jpg|gif)$/,
       use: ['file-loader']
      }
    ]
  },
  plugins: [
    new HtmlWebPackPlugin({
      template: "./src/html/index.html",
      filename: "./index.html",
      excludeChunks: [ 'server' ]
    })
  ]
}

构建命令是:

rm -rf dist && webpack --mode development --display-error-details --config webpack.server.config.js && webpack --mode development

我不知道如何解决这个问题。我尝试过删除并重新安装nodejs,删除所有docker镜像等。任何建议将不胜感激。

最佳答案

通过安装 this npm package 修复,将其导入到 server.js 上,然后猴子扭动:

var rp = require('fs.realpath')
rp.monkeypatch()

不幸的是,修复它并没有让我对 WSL 和 Node 的问题有更多的了解,但至少它有效。

编辑:

由于这个问题似乎与某些人相关,因此我发现真正的问题是我试图在与以下内容捆绑在一起的类中使用fs target: 'web' (我发布的第二个配置文件)。这是代码的另一部分,我没有想到这可能是问题所在。

我最初发布的 webpack.config.js 用于expressJS 服务器,而代码的其他部分用于应用程序的前端。

据我了解,target: 'web' 告诉 Webpack 不要捆绑和 NodeJS 函数,因为此代码将在浏览器中运行。 target: 'node' 适用于将在 Node 环境中运行的代码(即,将在后端运行的expressJS服务器)

我希望这可以帮助遇到这个问题的人。

关于node.js - WSL 上的 NodeJS+Webpack+Docker 项目使用 native 'fs' 库抛出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58508257/

相关文章:

node.js - 如何在除 Nodejs 之外的任何应用程序中使用 POE 的 API?

node.js - 上传 CSV 数据到 Redis

node.js - 无法使用 svn-spawn Node 模块连接到 svn

java - 从在 docker 容器中运行的 elasticsearch 客户端连接 elasticsearch 集群(即非 dockerized)

docker - 无法在Docker容器中使用 `systemd-cat`

javascript - 为什么某些未指定扩展名的 webpack/Babel ES6 导入会解析为 "undefined?"

node.js - Express 是否默认禁用 CORS?

ruby-on-rails - Docker - 无法转发交互式 shell 的端口

javascript - 当我使用公共(public)文件夹 Symfony 4 时,我的 css 和 js 文件没有加载

reactjs - 使用 Typescript 在 React 项目中存储/检索配置设置