Express JS 未在终端中更新版本
我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在命令行上运行
express
会调用express-generator
提供的功能(如果您已安装)。该程序的任何输出都特定于express-generator
而不是特定于express
本身。您看到的是系统上安装的
express-generator
版本,而不是express
本身的核心。使用 npm list [-g] 的输出来辨别您的系统或项目中安装的“core”Express 版本。Running
express
on the command line invokes the functionality provided byexpress-generator
(if you have it installed). Any output from this program would be specific toexpress-generator
and not toexpress
itself.What you're seeing is the version of
express-generator
that's installed on your system, not the core ofexpress
itself. Use the output ofnpm list [-g]
to discern what version of "core" Express is installed on your system or in your project.