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.
我一直在尝试使用 Webstorm 7 中的 express 框架创建 Node.JS 应用程序。我不断收到以下错误:
我想这与权限或 NPM 路由有关,我不知道如何在 Webstorm 中修改它。
NPM 和 NODE 在控制台中工作得很好,所以我猜这是 Webstorm 没有找到或无法访问正确的路由。任何帮助深表感谢。
似乎~/.npm目录的权限异常(如果您运行,有时会发生sudo npm install -g ...)。跑
~/.npm
sudo npm install -g ...
$ sudo chown -R Omar ~/.npm
从终端以重置权限。