ServerJS/Binary: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(→‎Relevant Discussions: added discussion links)
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
# [[ServerJS/Binary/A]] Proposal A from Ondras
# [[ServerJS/Binary/A]] Proposal A from Ondras
# [[ServerJS/Binary/B]] Proposal B from Kris Kowal
# [[ServerJS/Binary/B]] Proposal B from Kris Kowal
# [[ServerJS/Binary/C]] Proposal C from Daniel Friesen


= Prior Art =
= Prior Art =
Line 14: Line 15:
* [http://code.google.com/apis/gears/api_blob.html Google Gears Blob]
* [http://code.google.com/apis/gears/api_blob.html Google Gears Blob]
* [http://code.google.com/p/jslibs/wiki/jslang#jslang::Blob_class  JSlibs Blob]
* [http://code.google.com/p/jslibs/wiki/jslang#jslang::Blob_class  JSlibs Blob]
* [http://flusspferd.org/docs/js/Blob Flusspferd Blob] [http://github.com/ruediger/flusspferd/blob/1ead764aca33aca6926b6ac85871d1482c465616/src/core/blob.jsdoc repository link] (since it has been removed, the docs might go away at some point)


= Relevant Discussions =
= Relevant Discussions =

Latest revision as of 22:09, 30 July 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

  1. ServerJS/Binary/A Proposal A from Ondras
  2. ServerJS/Binary/B Proposal B from Kris Kowal
  3. ServerJS/Binary/C Proposal C from Daniel Friesen

Prior Art

Relevant Discussions

Encodings are a related topic.