0.1.0 • Published 3 years ago

@lavacoffee/datarw v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@lavacoffee/datarw

A binary data reader/writer aim to work with lavaplayer MessageIO

NPM Version NPM Downloads

Documentation

https://lavacoffee.github.io/datarw

Writer

import { DataWriter } from "@lavacoffee/datarw"

const writer = new DataWriter()

// ... (more on docs)

const dataBytes = writer.finish()

Reader

import { DataReader } from "@lavacoffee/datarw"

const reader = new DataReader(dataBytes)

// ... (more on docs)