nodejs和mongodb常见的小错误

1.直接使用nodejs会遇到如下问题:node

module.js:340
    throw err;
         ^Error: Cannot find module 'mongodb'

解决方式以下:
After trying for some time to install it without success (since I'm new to mongo and node), I was missing the npm link step indeed. So just to summarize, I did this:
npm install mongodb -g
cd /path/to/my/app/folder
npm link mongodb
2.
相关文章
相关标签/搜索