npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

token-types

v5.0.1

Published

Common token types for decoding and encoding numeric and string values

Downloads

16,269,808

Readme

Node.js CI NPM version npm downloads coveralls Codacy Badge Language grade: JavaScript Total alerts DeepScan grade Known Vulnerabilities

token-types

A primitive token library used to read and write from a node Buffer. Although it is possible to use this module directly, it is primary designed to be used with strtok3 tokenizer.

Compatibility

Module: version 5 migrated from CommonJS to pure ECMAScript Module (ESM). JavaScript is compliant with ECMAScript 2019 (ES10).

Installation

npm install --save token-types

Usually in combination with strtok3:

npm install --save strtok3

Using TypeScript you should also install @tokenizer/token as a development dependency:

npm install --save-dev @tokenizer/token

Example

import * as strtok3 from 'strtok3';
import * as token from 'token-types';
    
(async () => {

  const tokenizer = await strtok3.fromFile("somefile.bin");
  try {
    const myNumber = await tokenizer.readToken(token.Float32_BE);
    console.log(`My number: ${myNumber}`);
  } finally {
    tokenizer.close(); // Close the file
  } 
})();

Tokens

Numeric tokens

node-strtok supports a wide variety of numerical tokens out of the box:

| Token | Number | Bits | Endianness | |---------------|------------------|------|----------------| | UINT8 | Unsigned integer | 8 | n/a | | UINT16_BE | Unsigned integer | 16 | big endian | | UINT16_LE | Unsigned integer | 16 | little endian | | UINT24_BE | Unsigned integer | 24 | big endian | | UINT24_LE | Unsigned integer | 24 | little endian | | UINT32_BE | Unsigned integer | 32 | big endian | | UINT32_LE | Unsigned integer | 32 | little endian | | UINT64_BE | Unsigned integer | 64 | big endian | | UINT64_LE* | Unsigned integer | 64 | little endian | | INT8 | Signed integer | 8 | n/a | | INT16_BE | Signed integer | 16 | big endian | | INT16_LE | Signed integer | 16 | little endian | | INT24_BE | Signed integer | 24 | big endian | | INT24_LE | Signed integer | 24 | little endian | | INT32_BE | Signed integer | 32 | big endian | | INT32_LE | Signed integer | 32 | little endian | | INT64_BE | Signed integer | 64 | big endian | | INT64_LE* | Signed integer | 64 | little endian | | Float16_BE | IEEE 754 float | 16 | big endian | | Float16_LE | IEEE 754 float | 16 | little endian | | Float32_BE | IEEE 754 float | 32 | big endian | | Float32_LE | IEEE 754 float | 32 | little endian | | Float64_BE | IEEE 754 float | 64 | big endian | | Float64_LE | IEEE 754 float | 64 | little endian | | Float80_BE* | IEEE 754 float | 80 | big endian | | Float80_LE* | IEEE 754 float | 80 | little endian |

Other tokens

String types:

  • Windows-1252
  • ISO-8859-1

*) The tokens exceed the JavaScript IEEE 754 64-bit Floating Point precision, decoding and encoding is best effort based.

Custom token

Complex tokens can be added, which makes very suitable for reading binary files or network messages:

 ExtendedHeader = {
    len: 10,

    get: (buf, off) => {
      return {
        // Extended header size
        size: Token.UINT32_BE.get(buf, off),
        // Extended Flags
        extendedFlags: Token.UINT16_BE.get(buf, off + 4),
        // Size of padding
        sizeOfPadding: Token.UINT32_BE.get(buf, off + 6),
        // CRC data present
        crcDataPresent: common.strtokBITSET.get(buf, off + 4, 31)
      };
    }
  };