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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hex_conversion

v1.2.12

Published

A package for conversion of hexadecimal string to the specified data type.

Readme

hex_conversion

A package for conversion of hexadecimal string to the specified data type.

hex_conversion APIs

  1. getParsedHexValue(hexString, dataType)

    Converts hexadecimal string to the specified 'dataType'.

    Parameters

    • hexString: hexadecimal string to be converted.
    • dataType: data type to which the hexadecimal string has to be converted.

    Possible Conversions(from hex string)

    1. Float(dataType = "FLOAT"): 32/64 bit floating point number.
    2. Real(dataType = "REAL"): 32-bit single-precision floating point number.
    3. LReal(dataType = "LREAL"): 64-bit double-precision floating point number.
    4. Date(dataType = "DATE"): Date(MM-DD-YYYY).
    5. Int(dataType = "INT"): 16-bit integer.
    6. Short Int(dataType = "SINT"): 8-bit integer.
    7. Signed Large Int(dataType = "DINT"): 32-bit integer.
    8. Time Of Day(dataType = "TOD"): Time of day(unsigned integer in milliseconds, with zero equal to midnight).
    9. Unsigned Int(dataType = "UINT"): 32-bit unsigned integer.
    10. Unisgned Short Int(dataType = "USINT"): 8-bit short(small) integer.
    11. Unsigned Large Int(dataType = "UDINT"): 64-bit unsigned large integer.
    12. Time(dataType = "TIME"): Time(integer).
    13. Word(dataType = "WORD"): 16-bit unsigned integer.
    14. Double Word(dataType = "DWORD"): 32-bit unsigned integer.

    Example

    const { getParsedHexValue } = require("hex_conversion");
    
    let hexString = "0x4378028f";
    let dataType = "FLOAT";
    
    let result = getParsedHexValue(hexString, dataType);
    console.log(result);

    Output

    248.01

Steps to publish package:

  1. Make necessary changes to code and push.
  2. On cmd, put "npm login"
  3. It will then ask for username, password, and OTP. Username: gautam031098 Password: gautamnaik@336699 Email Id: [email protected] 4.Then change version by running command: npm version patch/minor/major patch: for backward compatible bug fixes=> 1.0.0 to 1.0.1 minor: for backward compatible new features=> 1.0.0 to 1.1.0 major: for changes that break backward compatibility=> 1.0.0 to 2.0.0
  4. Finally run command "npm publish". Here it will ask for OTP and then package will get published.
  5. Update the version of package wherever you are using the package in your project and then deploy.