快速会话:文档中未列出 NPM 依赖项?

express-session: NPM dependency not listed in documentation?

this tutorial 之后,我使用此代码安装了 express-session:

 npm install express-session --save --save-exact

但是现在当我尝试 运行 代码时,node 告诉我我需要一个名为 "buffer-crc32"

的包

我在安装 express-session 的驱动器中看到它被列为 require(),但我很困惑,因为存储在我计算机上的 index.js 文件似乎与 github here.

什么给了?为什么当我 运行 "npm install" 或 "npm update" 时没有安装依赖项?谢谢

我想通了。我不得不停止在我的 npm install 命令中使用“--save-exact”并更新我的 package.json 文档

中的版本