Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pocketnode/binarystream
BinaryStream implementation for Bun, Node.js, and Browser
https://github.com/pocketnode/binarystream
binary binary-stream buffer bun node typescript web
Last synced: 23 days ago
JSON representation
BinaryStream implementation for Bun, Node.js, and Browser
- Host: GitHub
- URL: https://github.com/pocketnode/binarystream
- Owner: pocketnode
- License: gpl-3.0
- Created: 2018-02-28T03:55:45.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-12T02:37:43.000Z (5 months ago)
- Last Synced: 2024-10-01T03:42:38.049Z (about 1 month ago)
- Topics: binary, binary-stream, buffer, bun, node, typescript, web
- Language: TypeScript
- Homepage: https://pocketnode.github.io/binarystream/
- Size: 65.4 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BinaryStream
`BinaryStream` is an Typescript module designed to facilitate the reading and writing of binary data. This package uses the [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) and [`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView) interfaces, both of which are native to Javascript making it compatible with Node.js and browser environments.
## Features
- Supports both Node.js and browser environments.
- Provides an easy-to-use API for handling binary data.
- Methods for reading and writing various data types (integers, floats, strings, etc.).
- Allows for dynamic buffer creation without worrying about sizing.## Installation
You can install the `BinaryStream` package via npm.
```bash
npm install @pocketnode/binarystream
```or
```bash
bun install @pocketnode/binarystream
```## Usage
### Importing the Module
```typescript
// Node.js, Bun, etc.
import BinaryStream from "@pocketnode/binarystream";// Browser from CDN
import BinaryStream from "https://esm.run/@pocketnode/binarystream@latest/dist/BinaryStream.js";
```### Creating an Instance
To create a new instance of `BinaryStream`, you can either provide an existing `ArrayBuffer` or specify the size of a new buffer:
```typescript
// Create an empty BinaryStream
const stream = new BinaryStream();// Create a BinaryStream from an array of bytes
const bytes = BinaryStream.from([0xde, 0xad, 0xbe, 0xef]);
bytes.toString("hex"); // deadbeef// Create a BinaryStream from a string
const str = BinaryStream.from("\xde\xad\xbe\xef", "binary");
str.toString("hex"); // deadbeef// Create a BinaryStream from an existing ArrayBuffer
const blob = new Blob(..., {type: "application/octet-stream"});
const streamFromBuffer = BinaryStream.from(await blob.arrayBuffer());
```### Example
Here is an example demonstrating how to write and read data using `BinaryStream`:
```typescript
const stream = new BinaryStream();// Write data to the stream
stream.writeUInt8(255);
stream.writeInt16(-32768);
stream.writeFloat32(3.14);
stream.writeString("Hello, BinaryStream!");// Reset the position to the beginning of the stream for reading
stream.flip();// Read data from the stream
const uint8 = stream.readUInt8();
const int16 = stream.readInt16();
const float32 = stream.readFloat32();
const str = stream.readString();console.log(uint8); // 255
console.log(int16); // -32768
console.log(float32); // 3.14
console.log(str); // Hello, BinaryStream!
console.log(stream.buffer); // Uint8Array (31) [255, 128, 0, 64, 72, 245, 195, 0, 0, 0, 20, 72, 101, 108, 108, 111, 44, 32, 66, 105, 110, 97, 114, 121, 83, 116, 114, 101, 97, 109, 33]
```## License
This project is licensed under the GNU GPLv3 License. See the [LICENSE](LICENSE) file for details.
## Contact
For questions or feedback, please open an issue on [GitHub](https://github.com/pocketnode/binarystream).