- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我完成了一个非常简单的 mongodb 教程,其中我们使用 mongo shell 创建了一个数据库,创建了一个集合,然后编写了一个非常简单的 nodejs 程序来访问集合并将文档记录到控制台。
var mongodb = require('mongodb');
var db = new mongodb.Db('mcfly', new mongodb.Server('127.0.0.1', 27017), {safe: true});
db.open(function(err) {
db.collection('mathpeeps', function(err, collection){
collection.find().toArray(function(err, items){
console.log(items)
});
});
});
但是当我运行程序时,它会给我:
js-bson: Failed to load c++ bson extension, using pure JS version
[ { _id: 53ab29bbdb49942ae25b5201,
firstname: 'Leonard',
lastname: 'Euler',
born: 1707 },
{ _id: 53ab29fedb49942ae25b5202,
firstname: 'Karl',
lastname: 'Gauss' } ]
我在 SO 上搜索并搜索了“js-bson:无法加载 c++ bson 扩展,使用纯 JS 版本”并尝试了所有方法,除了对其他人不起作用的答案或围绕 mongoose 问题的答案我在这个练习中没有使用 Mongoose 。
到目前为止我已经尝试过的一些事情:
sudo apt-get install gcc make build-essential
rm -rf node_modules
npm cache clean
npm install
(但本练习甚至不使用 package.json 文件)
我尝试用最新版本重新安装 node-mongodb
我试过了
npm install -g node-gyp
我在 SO 这里尝试了一个答案 Failed to load c++ bson extension :
进入 node_modules/mongodb/node_modules/bson 目录并从那里使用
node-gyp rebuild
然后产生:
gyp info it worked if it ends with ok
gyp info using node-gyp@0.13.1
gyp info using node@0.11.9-pre | linux | x64
gyp ERR! configure error
gyp ERR! stack Error: "pre" versions of node cannot be installed, use the --nodedir flag instead
gyp ERR! stack at install (/usr/local/lib/node_modules/node- gyp/lib/install.js:66:16)
gyp ERR! stack at Object.self.commands.(anonymous function) [as install] (/usr/local/lib/node_modules/node-gyp/lib/node-gyp.js:66:37)
gyp ERR! stack at getNodeDir (/usr/local/lib/node_modules/node- gyp/lib/configure.js:152:20)
gyp ERR! stack at /usr/local/lib/node_modules/node-gyp/lib/configure.js:95:9
gyp ERR! stack at ChildProcess.exithandler (child_process.js:659:7)
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:106:17)
gyp ERR! stack at maybeClose (child_process.js:773:16)
gyp ERR! stack at Socket.<anonymous> (child_process.js:986:11)
gyp ERR! stack at Socket.EventEmitter.emit (events.js:103:17)
gyp ERR! stack at Pipe.close (net.js:458:12)
gyp ERR! System Linux 3.13.0-29-generic
gyp ERR! command "node" "/usr/local/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/nathaniel/node_modules/mongodb/node_modules/bson
gyp ERR! node -v v0.11.9-pre
gyp ERR! node-gyp -v v0.13.1
gyp ERR! not ok
我在这里看到了一个 SO 答案 Failed to load c++ bson extension, using pure JS version说:
“听起来你在使用 npm 安装 bson 模块时没有安装 gcc/g++/make/python 2.x。尝试先安装它们,然后使用 npm 重新安装 bson。”
但是这个答案没有被选为解决方案,我不知道这意味着什么,因为我是一个严肃的菜鸟。
我真的很想继续学习 mongodb,但我不希望一些包 bug 导致 future 出现问题,让我错误地认为我做错了什么。我真的很想现在就把它弄清楚。
我还注意到许多发布此问题的其他人(没有 mongoose 或没有明确参与)没有选择答案或回复说他们解决了这个问题。
我正在运行 Ubuntu 14.04 LTS 和 Node v0.11.9-pre
任何帮助将不胜感激!!!!
最佳答案
我认为错误非常明确:错误:无法安装 Node 的“pre”版本,请改用 --nodedir 标志
。因此,您应该提供从安装 Node 的根 Node 源目录的路径,或者安装/使用实际 Node 版本(v0.11.13 是最新的不稳定版本,v0.10.29 是最新的稳定版本在撰写本文时发布)并再次尝试 npm install
/node-gyp rebuild
。
它要求 Node 源目录的原因是因为 node-gyp 必须从 nodejs.org 站点下载 Node 源 tarball 才能编译插件(它需要 C++ 头文件等)。但是,如果您有一个预发布的 Node 版本,node-gyp 无法知道要下载什么源代码树以匹配您已安装的内容。
关于node.js - 无法加载 c++ bson 扩展,使用纯 JS 版本——没有 Mongoose ,没有 express ,只有 Node 驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24440768/
我的 Web 应用程序在后端使用 Node.js 和 Express。当违反内容安全策略 (CSP) 时,报告 URI 报告空对象。我的后台代码如下: app.use(bodyParser.urlen
在服务器端提供静态服务的方式在 Express 中似乎非常简单: To serve static files such as images, CSS files, and JavaScript fil
var express = require('express'); var app = express(); 这就是我们创建快速应用程序的方式。但是这个'express()'是什么?它是方法还是构造函
我在尝试安装时收到以下错误 express : npm ERR! code ERR_OSSL_PEM_NO_START_LINE npm ERR! errno ERR_OSSL_PEM_NO_STAR
如 express 所述routing guide和 this answer ,我们可以创建“迷你应用程序”并从主应用程序使用它。但是我看到一段代码,它在模块中使用 app 而不是 router ap
我正在写一个 NestJS应用。现在我想安装 Express中间件 express-openapi-validator . 但是,我无法让它工作。有一个 description for how to
我看过很多类似的帖子,似乎我声明的 var1 似乎需要在其他地方传递,但我似乎无法弄清楚。 public Expression> CreateEqualNameExpression(string ma
Express(或 Connect 的)bodyParser 中间件被标记为已弃用,建议用户改用: app.use(connect.urlencoded()) app.use(connect.json
我只是想知道这种看似尴尬的配置的原因是什么(来自 Getting Started w/ Apollo Server ), const server = new ApolloServer({ //
我正在尝试在表单组中写入表单控件特定的验证错误消息。我在网上找到了几个教程和示例 ( such as this one ),概述了一个看似简单的 *ngIf div,如果在控件上检测到错误,则显示错误
我有一个简单的 Express 应用程序,托管在 AWS 上,使用无服务器框架。 我正在使用 serverless-http 包装 express 应用程序以部署到 AWS lambda 函数,并使用
我最近在 mozilla 教程的帮助下安装了 node 和 express。我正在安装应用程序生成器的下一步,但是当我运行时 npm install express-generator -g 在我的终
我遇到过两种不同的方式来定义 express、use() 中间件,我想知道它们之间是否有任何区别,或者它是否只是语法糖? 一个 const app = express(); app.use(cors(
我试图让我的 Jade 模板编写一个相对于当前 URL 的超链接 ( )。 例如,我的 View 是从 http://localhost/cats 调用的它看起来像这样: extends layou
检查 Express 文档我在下面看到了这种解决方案: app.all('/*', function(req, res) { console.log('Intercepting request
我似乎无法弄清楚如何包含多个模型。 我有三个模型。Tabs, Servers, and PointsTabs hasMany ServerServers belongsTo Tabs and hasM
我已使用Web PI安装IIS Express。在托盘中,没有IIS Express图标。如何在不使用命令行的情况下启动IIS Express?我希望IIS永久运行,因此没有命令行。 最佳答案 参见R
我不想在我的网站上使用 Jade 或 EJS。如何在不默认使用 Jade 模板的情况下创建快速站点?谢谢 最佳答案 如果您想要的是直接为静态 html 文件提供缓存资源的可能性,同时仍然能够点击“/”
Express是否支持HTTP动词“PATCH”,例如: app.patch("/api/resource", function(req, res){ ... }); 我检查了文档,对我来说似乎还不清
我正在快速服务器中运行 vue SPA。问题是当使用历史模式并刷新页面时,我得到一个 404 not found 异常。我尝试使用 connect-history-api-fallback 但不起作用
我是一名优秀的程序员,十分优秀!