JSPM

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

Basic binary managing written in Javascript

Package Exports

  • @jsprismarine/jsbinaryutils
  • @jsprismarine/jsbinaryutils/binarystream.js
  • @jsprismarine/jsbinaryutils/dist/BinaryStream
  • @jsprismarine/jsbinaryutils/dist/BinaryStream.js

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('jsbinaryutils')

let stream = new BinaryStream()

stream.writeByte(1)

console.log(stream.buffer)