请问一下怎么手动安州Mogoose模块?
发布于 11 年前 作者 liner518 3587 次浏览 最后一次编辑是 8 年前

由于网络的防火墙原因,我的npm install 使用时而成功时而失败,所以就只能去github下载一个模块包,但是,我不知道怎么安装,解压后,把他放在我项目的node_modules文件夹内也不行,还是我下错了?我下的包名是mongoose-3.8.x,里面有帮助文档,求高手指教怎么手动安装

4 回复
npm install .

大神啊,问题是我的npm install mongoose ,然后它显示一大堆 npm ERR! 404 ‘mongoose’ is not in npm registry! npm ERR! 404 you should bug the author to publish it. npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball,folder,or http url, or git url. ………………………… 一大推这种东西,求大神指教啊,都快疯了,好不容易开始看,不想放弃啊

@liner518

git clone https://github.com/LearnBoost/mongoose.git
cd ./mongoose && npm install

请确认当前目录是否有package.json这个文件,并且是正确的格式

回到顶部