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.
我想问如何将模块添加到node.js。我我已经安装了 node.js 并想创建一个简单的表单来上传图像。当我需要一个“强大的”模块并从中创建一个新对象时,我收到一个错误“找不到模块formidabe”。
通过 npm(节点包管理器),从你的命令行试试这个:
npm install formidable
如文档中所述。之后它应该工作。