从官网下载的cesium1.82初始运行项目报错Cannot find module 'express'
一、问题
缺少依赖,然后执行npm install
出现以下错误:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: cesium@1.82.0
npm ERR! Found: rollup@2.52.3
npm ERR! node_modules/rollup
npm ERR! dev rollup@"^2.22.1" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer rollup@">=0.66.0 <2" from rollup-plugin-uglify@6.0.4
npm ERR! node_modules/rollup-plugin-uglify
npm ERR! dev rollup-plugin-uglify@"^6.0.3" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\PC\AppData\Local\npm-cache\eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
二、解决问题
找到pack.json文件
删除"rollup-plugin-uglify": "^6.0.4",
增加"rollup-plugin-terser": "^7.0.2",
修改引用
删除// const rollupPluginUglify = require("rollup-plugin-uglify");
增加const rollupPluginUglify = require("rollup-plugin-terser");
重新执行npm install ---安装成功
node server.cjs 执行成功