我正在使用Node.JS工具在Visual Studio(2015)中开发Node.JS应用程序,我安装了NPM包mongodb。但是当我想要mongodb模块时,它会失败并出现错误
找不到模块'mongodb'
在解决方案资源管理器中>项目> npm是显示的这个包。为什么会抛出错误?加载模块的TypeScript代码是
import mongo = require('mongodb');
// converted to JS
var mongo = require('mongodb');
的package.json:
{
"name": "XYZ",
"version": "0.0.0",
"description": "_XYZ",
"main": "app.js",
"author": {
"name": "zurmi",
"email": "fsdgsdfgsdf@sadfasdf.sd"
},
"dependencies": {
"mongodb": "2.0.47"
}
}