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

bignumberify

v0.0.7

Published

A parser to correctly recreate BigNumber items in a JSON

Downloads

11

Readme

bigNumberify

A simple parser to correctly rebuild objects containing big numbers while parsing JSON strings

Intro

Managing transactions and results of query to smart contracts, you get a JSON string that encodes some Big Number in a format like

{
  "bn": {
    "type": "BigNumber",
    "hex": "0x32"
  }
}

If you JSON.parse it, the property bn won't be a BigNumber :(

bigNumberify fixes the issue fixing all the BigNumber objects inside the JSON.

Usage

In a Node app load as

const bigNumberify = require("bignumberify");

In a ES6 app, load as

import bigNumberify from "bignumberify";

To parse an object

const obj = bigNumberify(inputObj);

or as a reviver function

const obj = JSON.parse(jsonStr, bigNumberify);

To stringify an object

With BigNumber you do not need any special replacer to stringify an object containing BigNumbers. However, JSON.stringify throw an error if you try to stringify an object containing BigInt values. No problem, you can stringify them using

const jsonStr = JSON.stringify(obj, bigNumberify.stringify);

It will encode the BigInt 125000n as

{ 
  "type": "BigInt", 
  "hex": "0x01e848"
}

This way, during the parsing, the reviver function will be able to correctly rebuild the BigInt. Notice that the common practice is to stringify BigInt values as strings, but if you do so, how can you know, parsing the object, if that is a string or a BigInt?

History

0.0.7

  • Add bigNumberify.stringify method to the able to stringify objects containing BigInt
  • Parse JSON strings containing encoded BigInt values as BigInt values

0.0.6

  • No real change. Just a fix in the README

0.0.5

  • It is now able to manage single values as a reviver function

0.0.4

  • Can now be used as a reviver function

0.0.3

  • Ignore objects that look like a BigNumber, but they are not

0.0.2

  • No real change. Just a better README

0.0.1

  • First version

TODO

  • Add support for other formats

License

MIT

Copyright

(c) 2022, Francesco Sullo [email protected]