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:
I downloaded github.com/pubsubio/chat
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.