JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3212
  • Score
    100M100P100Q128110F
  • License ISC

Basic binary managing written in TypeScript

Package Exports

  • @jsprismarine/jsbinaryutils

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 (@jsprismarine/jsbinaryutils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

JSBinaryUtils

https://www.npmjs.com/package/@jsprismarine/jsbinaryutils

USE:

# Yarn
$ yarn add @jsprismarine/jsbinaryutils
# NPM
$ npm i @jsprismarine/jsbinaryutils

Sample code

const BinaryStream = require('@jsprismarine/jsbinaryutils').default

let stream = new BinaryStream()

stream.writeByte(1)

console.log(stream.buffer)