Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binaryjs/binaryjs
Node binary websocket streaming made easy
https://github.com/binaryjs/binaryjs
Last synced: 1 day ago
JSON representation
Node binary websocket streaming made easy
- Host: GitHub
- URL: https://github.com/binaryjs/binaryjs
- Owner: binaryjs
- License: mit
- Created: 2012-06-29T07:23:04.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-01-20T03:37:18.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T15:33:54.904Z (about 2 months ago)
- Language: JavaScript
- Size: 712 KB
- Stars: 2,196
- Watchers: 93
- Forks: 329
- Open Issues: 60
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://secure.travis-ci.org/binaryjs/binaryjs.png)](http://travis-ci.org/binaryjs/binaryjs)
BinaryJS
========We're under development!
For docs and more info
http://binaryjs.comNode binary websocket streaming made easy
## Download
Server
```console
$ npm install binaryjs
```
or from Git
```console
$ git clone git://github.com/binaryjs/binaryjs.git
$ cd binaryjs
$ npm install -g
```Client
```html
```
### http://binaryjs.com for docs and demos
## Changelog
0.2.2- Update js-binarypack to 0.0.9, removed unused check.
0.2.1
- Update js-binarypack to 0.0.7, fast utf8 support now on by default.
0.2.0
- Fix critical BinaryPack issue prevent TypedArrays of 16 bit or greater from being serialized correctly
0.1.9
- Fix close internal socket (removing not supported code/message parameters)
0.1.8
- Does not throw exceptions when writing on a stream with closed underlying socket
- StreamID no longer has to be a number
- Use newer version of node-binarypack0.1.7
- Fix critical bug involving drain event not firing. Bump `streamws` to 0.1.1
0.1.5
- `streamws` version `>=0.1.0` is now required
- Streams no longer add their own listeners to error/close/drain events (fixes leaks)
- Calls to `socket.send` no longer include `{binary: true}` or callback parameters (fixes type error in some browsers)