Nodejs:找不到模块“nanoid”
当我尝试编译我的 Typescript 项目(NestJS)时,我遇到了以下问题。
一些软件包如 nanoid
、cookie-parser
给出错误 Error: Cannot find module 'nanoid'
他们使用的代码如下:
...
import { nanoid } from "nanoid";
...
const confirmToken = nanoid(32);
...
以下是我的尝试:
尝试完全删除node_modules和package.json.lock。
使用了v16.14.0、v17版本的NodeJS
使用了yarn和npm
这些方法都没有帮助。
同样,此错误仅发生在某些软件包上。
可能有什么问题?
When I try to compile my Typescript project (NestJS) I came across the following problem.
Some packages like nanoid
, cookie-parser
give error Error: Cannot find module 'nanoid'
The code where they used is below:
...
import { nanoid } from "nanoid";
...
const confirmToken = nanoid(32);
...
Here are what I tried:
Tried to completely remove node_modules and package.json.lock.
Used v16.14.0, v17 versions of NodeJS
Used yarn and npm
None of these ways helped.
Again, this error happens with only certain packages.
What could be an issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论