JSPM

@lavacoffee/datarw

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q29467F
  • License MIT

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

Package Exports

  • @lavacoffee/datarw
  • @lavacoffee/datarw/dist/index.js
  • @lavacoffee/datarw/dist/index.mjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@lavacoffee/datarw) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@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)