In order for efficient server side parsing I am looking into a BSON solution directly for the browser javascript environment. The idea is to utilize the entire ASCII space by means of binary websockets. Any suggestions?

(Any nodejs suggestions are welcome as well)

See also: http://bsonspec.org/

link|improve this question

64% accept rate
2  
I'm not sure why you would want to do this? Just pass JSON to/from the client/browser and then convert to BSON as you would like on the server. – Chris Pietschmann Sep 24 '11 at 20:04
JavaScript really doesn't have much support for low-level manipulations - like the ones that allow BSON to be more efficient than JSON - so you'd probably have to use Flash... – Matt Ball Sep 24 '11 at 20:11
2  
You may want to improve your accept rate. – jfriend00 Sep 24 '11 at 20:13
@ChrisPietschmann: this would limit me to HTTP and e.g. integers in JSON have to parsed instead of the possibility of direct assignment. (The intend is also less load on the server) – Lo - lsauer.com Sep 24 '11 at 20:32
feedback

1 Answer

This might be incomplete but the goal of the project line up with what you want: https://github.com/muhmi/javascript-bson It doesn't look like that encodes directly to typed arrays which would be the most useful for sending over WebSocket.

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.