gpt4 book ai didi

node.js - 模块构建失败(来自 ./node_modules/html-loader/dist/cjs.js):

转载 作者:行者123 更新时间:2023-12-03 12:29:59 35 4
gpt4 key购买 nike

我正在尝试快速启动 ava electron webpack 和三个,但在该过程中出现了问题。

这里是项目的存储库:

https://github.com/etiennerin/ecsy-three-electron-ava-quick-start

通过键入 npm run dev 尝试使用我的项目,我收到以下错误消息:

npm run dev output

我正在使用 Windows。

我认为这个错误可能与我的 webpack 配置有关,在我尝试了一些 npm-update 之前,它似乎可以正常工作:

'use strict'

import { app, BrowserWindow } from 'electron'
import * as path from 'path'
import { format as formatUrl } from 'url'
import * as THREE from '../../node_modules/three/build/three.module.js';
//import {World} from '../../node_modules/ecsy/build/ecsy.module.js';

const isDevelopment = process.env.NODE_ENV !== 'production'

// global reference to mainWindow (necessary to prevent window from being garbage collected)
let mainWindow

function createMainWindow() {
const window = new BrowserWindow({webPreferences: {nodeIntegration: true}})

if (isDevelopment) {
window.webContents.openDevTools()
}

if (isDevelopment) {
window.loadURL(`http://localhost:${process.env.ELECTRON_WEBPACK_WDS_PORT}`)
}
else {
window.loadURL(formatUrl({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file',
slashes: true
}))
}

window.on('closed', () => {
mainWindow = null
})

window.webContents.on('devtools-opened', () => {
window.focus()
setImmediate(() => {
window.focus()
})
})

return window
}

// quit application when all windows are closed
app.on('window-all-closed', () => {
// on macOS it is common for applications to stay open until the user explicitly quits
if (process.platform !== 'darwin') {
app.quit()
}
})

app.on('activate', () => {
// on macOS it is common to re-create a window even after all windows have been closed
if (mainWindow === null) {
mainWindow = createMainWindow()
}
})

// create main BrowserWindow when electron is ready
app.on('ready', () => {
mainWindow = createMainWindow()
})

还有我最新的 package.json:

{
"name": "electron-webpack-quick-start",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "electron-webpack dev",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"test": "ava"
},
"dependencies": {
"source-map-support": "^0.5.16"
},
"ava": {
"files": [
"spec/**/*"
],
"require": [
"esm"
]
},
"devDependencies": {
"ava": "^3.5.1",
"ecsy": "^0.2.3",
"electron": "8.1.1",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.7.4",
"esm": "^3.2.25",
"html-loader": "^1.0.0",
"three": "^0.112.1",
"webpack": "^4.42.0"
}
}

非常感谢您的每一条建议!

最佳答案

您是否尝试过清理并重新安装

rm -rf node_modules yarn.lock package-lock.json
npm install // or yarn
run webpack

关于node.js - 模块构建失败(来自 ./node_modules/html-loader/dist/cjs.js):,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60801331/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com