|
1 |
| - |
| 1 | + |
2 | 2 | ======================================
|
3 | 3 | A fast and complete ByteBuffer implementation using either ArrayBuffers in the browser or node Buffers under node.js,
|
4 | 4 | generated from a single source tree through [MetaScript](https://github.com/dcodeIO/MetaScript).
|
5 | 5 |
|
6 |
| -[](https://travis-ci.org/dcodeIO/ByteBuffer.js) |
7 |
| -[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=info%40code-emitter.com&item_name=Open%20Source%3A%20ByteBuffer.js) |
| 6 | +[](https://travis-ci.org/dcodeIO/bytebuffer.js) |
| 7 | +[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dcode%40dcode.io&item_name=Open%20Source%3A%20bytebuffer.js) |
8 | 8 |
|
9 | 9 | Features
|
10 | 10 | --------
|
@@ -34,26 +34,26 @@ var ByteBuffer = require("bytebuffer");
|
34 | 34 | var bb = new ByteBuffer()
|
35 | 35 | .writeIString("Hello world!")
|
36 | 36 | .flip();
|
37 |
| -console.log(bb.readIString()+" from ByteBuffer.js"); |
| 37 | +console.log(bb.readIString()+" from bytebuffer.js"); |
38 | 38 | ```
|
39 | 39 |
|
40 |
| -In the browser, 64 bit integer support is optional and present only if [Long.js](https://github.com/dcodeIO/Long.js) has |
41 |
| -been loaded prior to ByteBuffer.js. |
| 40 | +In the browser, 64 bit integer support is optional and present only if [Long.js](https://github.com/dcodeIO/long.js) has |
| 41 | +been loaded prior to bytebuffer.js. |
42 | 42 |
|
43 | 43 | API
|
44 | 44 | ---
|
45 |
| -* [View the API documentation](https://github.com/dcodeIO/ByteBuffer.js/wiki/API) |
46 |
| -* [Check the wiki](https://github.com/dcodeIO/ByteBuffer.js/wiki) |
| 45 | +* [View the API documentation](https://github.com/dcodeIO/bytebuffer.js/wiki/API) |
| 46 | +* [Check the wiki](https://github.com/dcodeIO/bytebuffer.js/wiki) |
47 | 47 |
|
48 | 48 | Downloads
|
49 | 49 | ---------
|
50 |
| -* [Distributions](https://github.com/dcodeIO/ByteBuffer.js/tree/master/dist) |
51 |
| -* [ZIP-Archive](https://github.com/dcodeIO/ByteBuffer.js/archive/master.zip) |
52 |
| -* [Tarball](https://github.com/dcodeIO/ByteBuffer.js/tarball/master) |
| 50 | +* [Distributions](https://github.com/dcodeIO/bytebuffer.js/tree/master/dist) |
| 51 | +* [ZIP-Archive](https://github.com/dcodeIO/bytebuffer.js/archive/master.zip) |
| 52 | +* [Tarball](https://github.com/dcodeIO/bytebuffer.js/tarball/master) |
53 | 53 |
|
54 | 54 | Support for IE<10, FF<15, Chrome<9 etc.
|
55 | 55 | ---------------------------------------
|
56 |
| -* Use bytebuffer-dataview with a polyfill ([see](https://github.com/dcodeIO/ByteBuffer.js/tree/master/dist)) |
| 56 | +* Use bytebuffer-dataview with a polyfill ([see](https://github.com/dcodeIO/bytebuffer.js/tree/master/dist)) |
57 | 57 |
|
58 | 58 | Contributors
|
59 | 59 | ------------
|
|
0 commit comments