Express JS 未在终端中更新版本

发布于 2025-01-10 11:38:47 字数 408 浏览 0 评论 0原文

我需要 ExpressJS v 4.17 而不是 4.16,因为它导致了与其他模块的一些依赖问题。我按照这个答案中的说明进行操作,现在我不知道是什么正在进行中。

在我的 package.json 中,我看到的是 v 4.17,但是当我在终端中尝试 express -v 时,我看到的是 4.16。如果我转到目录中的节点模块,我的应用程序位于 package.json 中,express 模块也是 4.17 - 但终端仍然显示 4.16

我在这里错过了一个步骤吗?根据终端显示,4.16 似乎仍然安装,并且尽管所有其他迹象都表明它已经更新,但它还没有更新?

I needed ExpressJS v 4.17 instead of 4.16 as it caused some dependency issues with other modules. I followed the instructions in this answer and now I can’t work out what’s going on.

In my package.json I’m seeing v 4.17 but when I try express -v in terminal I see 4.16. If I go to node modules in the directory my app is in the package.json for the express module is also 4.17 - but terminal still showing 4.16

Am I missing a step here? It looks like 4.16 is still installed according to terminal and that it hasn’t been updated despite all the other signs saying it has?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南七夏 2025-01-17 11:38:47

在命令行上运行 express 会调用 express-generator 提供的功能(如果您已安装)。该程序的任何输出都特定于 express-generator不是特定于 express 本身。

您看到的是系统上安装的 express-generator 版本,而不express 本身的核心。使用 npm list [-g] 的输出来辨别您的系统或项目中安装的“core”Express 版本。

Running express on the command line invokes the functionality provided by express-generator (if you have it installed). Any output from this program would be specific to express-generator and not to express itself.

What you're seeing is the version of express-generator that's installed on your system, not the core of express itself. Use the output of npm list [-g] to discern what version of "core" Express is installed on your system or in your project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文