0.2.0
The Concise Binary Object Representation (CBOR) data format (RFC7049) implemented in pure JavaScript, revived.
Repository
Current version released
4 years ago
cbor-redux
The Concise Binary Object Representation (CBOR) data format (RFC 7049) implemented in pure JavaScript, revived.
Rewritten in TypeScript for the browser, Deno, and Node.
Usage
Require cbor-redux
in Node:
const { CBOR } = require('cbor-redux')
or import in Deno:
import { CBOR } from 'https://deno.land/x/cbor-redux@0.2.0'
or script on an HTML page:
<script src="https://cdn.skypack.dev/cbor-redux@^0.2.0" type="text/javascript"></script>
Then you can use it via the CBOR
-object in your code:
const initial = { Hello: 'World' }
const encoded = CBOR.encode(initial)
const decoded = CBOR.decode(encoded)
After running this example initial
and decoded
represent the same value.
API
The CBOR
-object provides the following two functions:
CBOR.decode(data: ArrayBuffer)
Take the ArrayBuffer object data and return it decoded as a JavaScript object.
CBOR.encode(data: any)
Take the JavaScript object data and return it encoded as a ArrayBuffer object.
For complete API details, visit the documentation.
Combination with WebSocket
The API was designed to play well with the WebSocket
object in the browser:
var websocket = new WebSocket(url);
websocket.binaryType = "arraybuffer";
...
websocket.onmessage = function(event) {
var message = CBOR.decode(event.data);
};
...
websocket.send(CBOR.encode(message));