ServerJS/Binary: Difference between revisions
< ServerJS
Jump to navigation
Jump to search
mNo edit summary |
(→Relevant Discussions: added discussion links) |
||
Line 20: | Line 20: | ||
* [http://groups.google.com/group/serverjs/browse_thread/thread/da076076c965d069/2cd8ac336387ceb3?lnk=gst Comments on Binary object] | * [http://groups.google.com/group/serverjs/browse_thread/thread/da076076c965d069/2cd8ac336387ceb3?lnk=gst Comments on Binary object] | ||
* [http://groups.google.com/group/serverjs/browse_thread/thread/e866544eb3aff182/16ed57b3c78b86e1?lnk=gst Binary API Brouhaha] | * [http://groups.google.com/group/serverjs/browse_thread/thread/e866544eb3aff182/16ed57b3c78b86e1?lnk=gst Binary API Brouhaha] | ||
* [http://groups.google.com/group/serverjs/browse_thread/thread/f8ad81201f7b121b ByteArray and ByteString proposal] regarding proposal B | |||
[[ServerJS/Encodings|Encodings]] are a related topic. |
Revision as of 08:12, 11 April 2009
JavaScript does not have a binary data type. However, in server-side scenarios, binary data needs to be often processed. That is why we need some working byte or binary array or string class.
Proposals
- ServerJS/Binary/A Proposal A from Ondras
- ServerJS/Binary/B Proposal B from Kris Kowal
Prior Art
- Adobe AIR's ByteArray
- Mozilla's nsIBinaryInputStream
- Mozilla's nsIBinaryOutputStream
- EJScript ByteArray
- Google Gears Blob
- JSlibs Blob
Relevant Discussions
- First Proposal
- Comments on Binary object
- Binary API Brouhaha
- ByteArray and ByteString proposal regarding proposal B
Encodings are a related topic.