README
May 30, 2010 ยท View on GitHub
- MessagePack-JS JavaScript implimentation for MessagePack serialization format.
** usage
var true); // true
var int8 = MessagePack.unpack("\xd0\xc0")); alert(int8); // -64
var fixraw = MessagePack.unpack("\xa1\x61"); alert(fixraw); // 'a'
var int32 = MessagePack.unpack("\xd2\xff\xf0\x00\x00"); alert(int32); // -1048576
** environment tested for IE 8.0.6 , Firefox 3.6.3 , Google Chrome 4.1
** see other http://msgpack.sourceforge.net/
** LISENCE MIT Lisence
** Test Test code (tests.html) requires JsUnit Benchmark code needs prototype.js If you want to test and benchmark msgpack.js, please deploy as follows: ./lib/msgpack.js ./test/test_unpack.html ./test/test_pack.html ./test/test_xhr.html
# see jsunit < http://github.com/pivotal/jsunit >
./test/jsunit/testRunner.html
./test/jsunit/app/jsUnitCore.js
./test/jsunit/testRunner.html
./test/jsunit/app/jsUnitCore.js
./benchmark/benchmark.html
# see prototype.js < http://www.prototypejs.org/ >
./benchmark/prototype/prototype.js
Before you test test_xhr.html, you must start server.rb. > ruby server.rb server.rb require Ruby MessagePack Library. Please install Ruby MessagePack Library: > gem install msgpack