13个稳定版本
新 2.6.10 | 2024年8月16日 |
---|---|
2.6.7 | 2024年8月12日 |
1.2.3 | 2023年12月13日 |
1.1.4 | 2023年11月21日 |
#7 in #data-streaming
每月下载量MIT许可证
3K SLoC
@serenityjs/binarystream
Binarystream是一个简单的Rust包,旨在简化在JavaScript和TypeScript中流式传输二进制数据。它结合了Rust的超快速度和JavaScript的生态系统!
示例用法
依赖项
import { BinaryStream } from "@serenityjs/binarystream"
// Create a new stream without a given buffer.
const stream = new BinaryStream()
// Reading / Writing is allowed on the fly,
// which will automatically update the cursor offset depending on the type of call.
stream.writeUint8(255)
stream.writeString16("Hello, World!")
// Converting the stream to a buffer!
const buffer = stream.getBuffer()
// Create another stream based on our output buffer from the previous stream.
const output = new BinaryStream(buffer)
// Reading the data in order.
stream.readUint8() // Expected output: 255
stream.readString16() // Expected output: "Hello, World!"