Socket
Socket
Sign inDemoInstall

@12core/varint-wasm

Package Overview
Dependencies
1
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @12core/varint-wasm

A varint implementation compiled to WASM format


Version published
Weekly downloads
1
Maintainers
2
Install size
15.2 kB
Created
Weekly downloads
 

Readme

Source

varint-wasm

A varint implementation for WebAssembly (WASM) written in ZZ that implements an Abstract Encoding interface.

Installation

Node

$ npm install @12core/varint-wasm

WAPM

$ wapm install jwerle/varint-wasm

Usage

const varint = require('varint-wasm')

// wait for module to be ready if loading in a browser environment
varint.ready(() => {
  const encoded = varint.encode(64 * 1024)
  console.log(encoded) // <Buffer 80 80 04>

  const decoded = varint.decode(encoded)
  console.log(decoded) // 65536
})

API

buffer = encode(number[, buffer[, offset]])

Encode a number optionally into buffer at an optionally specified offset.

number = decode(buffer[, offset])

Decode an input buffer into an integer optionally an optionally specified offset.

promise = ready(callback)

Returns a promise that resolves or rejects when the WebAssembly exports are loading. In some cases, this may happen synchronously when this module is loaded.

await b64.ready()

Limits

Max Integer

Because 32-bit integers are only supported in WASM at the time of writing, you can only encode numbers up 2**31 -1.

Initial Memory

By default, this module allocates 2 pages of memory for the WebAssembly module. That is 2 * 64 * 1024 bytes.

Maximum Memory

This module allows at most 256 pages of memory. That is 256 * 64 * 1024 bytes.

See Also

License

MIT

Keywords

FAQs

Last updated on 13 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc