Git Product home page Git Product logo

Comments (4)

ChristophGr avatar ChristophGr commented on May 29, 2024 1

I suspected as much, just wanted to make sure.
Thanks for the hint.

from bs-json.

glennsl avatar glennsl commented on May 29, 2024

Hey. Can you give an example to reproduce the issue?

from bs-json.

ChristophGr avatar ChristophGr commented on May 29, 2024
let jsonString = "{ \"number\": 9007199254740993 }";

type parsed = {
  number: int,
};

let decode = json => Json.Decode.(
  {
    number: json |> field("number", int)
  }
);

outputs

{number: 9007199254740992}

So what I would like to do:

type parsed = {
  number: int64,
};

let decode = json => Json.Decode.(
  {
    number: json |> field("number", int64)
  }
);

from bs-json.

glennsl avatar glennsl commented on May 29, 2024

Right, that's unfortunately a fundamental limitation to the approach this library takes. bs-json tries to be as lightweight as possible while being JavaScript-compatible, and because it utilizes existing JavaScript APIs to do as much work as possible, it can only decode JSON as a subset of JavaScript. While JSON does not put a limit on the size of a number, JavaScript does, and that limit is therefore inherited by this library.

Rex Json might do, or with some tweaking be able to do what you want since it it's a self-contained implementation of both parsing and decoding.

Alternatively, if you're able to change the encoding, to a string for example, you could write a decoder that would allow you to work with numbers larger than what JavaScript allows. Otherwise it's unfortunately out of scope.

So I'll close this for that reason, but feel free to continue to discuss it, ask questions or suggest some other solution that might work for you.

from bs-json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.