Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到错误在 nodejs 应用程序中找不到模块“bcrypt”
我尝试使用 npm install bcrypt 安装它,但仍然遇到问题
npm i bcrypt
它正在尝试bcrypt从源代码构建,但您没有为此安装必要的工具。
bcrypt
首先尝试安装 Visual C++ Build Tools,这可以使用以下方便的 npm 包来完成:
npm install -g windows-build-tools
完成后,npm install bcrypt再次运行。
npm install bcrypt
更多信息在这里: https ://www.npmjs.com/package/windows-build-tools