纱线找不到模块(html-to-text)
Yarn cannot find module (html-to-text)
我运行yarn add html-to-text
成功了。该包在 package.json
列表中。现在,当我尝试按照手册中的描述要求模块时,它显示 Error: Cannot find module html-to-text
。同一个存储库正在另一台笔记本电脑 (Mac) 上运行。我正在使用 Windows,但我认为这不应该是问题所在。
const { convert } = require('html-to-text');
有什么想法吗?
编辑
其他新模块好像也是! 运行 yarn
将其添加到 node_modules
,但它在 import
上显示 Module not found
我需要 运行 yarn docker --build
并且成功了。
你也可以用
npm install html-to-text
然后使用
const { 转换 } = require('html-to-text');
可能对您有所帮助
我运行yarn add html-to-text
成功了。该包在 package.json
列表中。现在,当我尝试按照手册中的描述要求模块时,它显示 Error: Cannot find module html-to-text
。同一个存储库正在另一台笔记本电脑 (Mac) 上运行。我正在使用 Windows,但我认为这不应该是问题所在。
const { convert } = require('html-to-text');
有什么想法吗?
编辑
其他新模块好像也是! 运行 yarn
将其添加到 node_modules
,但它在 import
Module not found
我需要 运行 yarn docker --build
并且成功了。
你也可以用
npm install html-to-text
然后使用
const { 转换 } = require('html-to-text');
可能对您有所帮助