Every time I try to do anything in Nodejs, what is connected with mangodb or sockets, then I receive error:

node.js:134
        throw e; // process.nextTick error, or 'error' event on first tick
        ^
Native bson parser not compiled, please compile or avoid using native_parser=true

what should I compile, use, install, etc to avoid it? I was trying install mangodb, node-mongodb-native also during node-mongodb-native installation I get message:

 cxx: bson.cc -> build/default/bson_1.o

so probably I have bson somewhere...

I am using: node 0.4.7 Ubuntu 10.10

EDIT. What I am trying to run:

  1. I downloaded github.com/pubsubio/chat

  2. Installed packaged for this project are:

/home/mrok/nodejs/pubsub/pubsubio-chat
├── bson@0.0.3 
├── common@0.1.1 
├── galletita@0.1.1 
├── mongodb@0.9.6-7 
├─┬ mongojs@0.1.6 
│ ├── common@0.1.1 
│ └── mongodb@0.9.6-7 
├─┬ mongoose@1.7.3 
│ ├── colors@0.5.0 
│ └── hooks@0.1.9 
├─┬ pubsub.io@0.1.7 
│ └── json-sockets@0.2.0 
└── router@0.3.1

and I still receive:

Native bson parser not compiled, please compile or avoid using native_parser=true

Any tips are welcome.

link|improve this question

33% accept rate
mango - uppss ;) – mrok Jul 19 '11 at 21:39
updated my answer. I got server.js up and running. – Alfred Jul 22 '11 at 13:15
feedback

2 Answers

up vote 1 down vote accepted

BEGIN UPDATE

Install mongodb-native

mkdir /tmp/mongodb-native
cd /tmp/mongodb-native
git clone https://github.com/christkv/node-mongodb-native
make

Install mongojs

npm install mongojs

END UPDATE

First install npm.next I would advice you to install mongoose instead. It is very popular mongodb utility library. When you use package manager like npm your dependencies will get installed automatically.

link|improve this answer
Thanks for help, unfortunately problem still occurs. – mrok Jul 20 '11 at 20:45
mongoose not working?? – Alfred Jul 20 '11 at 21:34
Try install bison => search.npmjs.org/#/bson – Alfred Jul 20 '11 at 21:43
wow - I did not expect that installing bson can be so easy. Thanks for this. You helped me a lot, but I still have the same case. I will describe more what I am going to achieve. 1. I downloaded github.com/pubsubio/chat 2. Installed packaged for this project are: /home/mrok/nodejs/pubsub/pubsubio-chat ├── bson@0.0.3 ├── common@0.1.1 ├── galletita@0.1.1 ├── mongodb@0.9.6-7 ├─┬ mongojs@0.1.6 │ ├── common@0.1.1 │ └── mongodb@0.9.6-7 ├─┬ mongoose@1.7.3 │ ├── colors@0.5.0 │ └── hooks@0.1.9 ├─┬ pubsub.io@0.1.7 │ └── json-sockets@0.2.0 └── router@0.3.1 – mrok Jul 21 '11 at 21:54
@mrok the more information you provide the better stackoverflow users can help you. – Alfred Jul 21 '11 at 21:57
show 4 more comments
feedback

I fixed the problem by changing the line 28 of node-mongodb-native/lib/mongodb/db.js file to this.native_parser = this.options.native_parser = false;

You can also use npm install mongodb --mongodb:native

However, it is not recommended since the native driver works slower than the JavaScript one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.