V7 VS decimal.js

Compare V7 vs decimal.js and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
V7 decimal.js
3 22
1,401 6,113
0.0% -
1.8 0.0
over 3 years ago 7 months ago
C JavaScript
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

V7

Posts with mentions or reviews of V7. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-02.
  • Flattening ASTs (and Other Compiler Data Structures)
    7 projects | news.ycombinator.com | 2 Jul 2023
    I used such a succinct AST structure to implement a JavaScript parser and interpreter for a severely memory constrained environment (embedded): V7 (https://github.com/cesanta/v7)

    We later switched to a ast->bytecode compilation step but for a while the implicit AST was directly traversed during interpretation.

  • Microvium Is Small
    4 projects | news.ycombinator.com | 21 Jun 2022
    Nice! A few years ago I took a stab at this problem space with https://github.com/cesanta/v7 ; with fun tricks like in-place compacting GC, stdlib JS object graph "frozen" in rom etc
  • JavaScript Is Weird
    7 projects | news.ycombinator.com | 28 Jun 2021
    https://github.com/cesanta/v7

    Languages are not all equal nor do they all function in the same way, and that's not my opinion.

    Javascript syntax itself is one thing, and you can certainly feel free to Javascriptify some C++ libraries and make it all look a certain way for specific tasks, while managing things behind the scenes, up to a point... but there is no getting around the fact that SOMEONE and some languages are needed to implement low level systems functionality.

    the power of Cython or the Python C FFI is that it allows you to script/glue modular native code.

    You then state "C++14 may have been ratified 7 years ago but it's not the target code your build chain spits out"

    no, a C++ COMPILER spits out assembler code that then gets assembled and linked into an executable.

    The C++ or C code corresponds directly to a given set of assembler instructions which correspond directly to CPU instructions.

    You claim that Python programming of microcontrollers is mainstream, but this is not true nor possible. Python SCRIPTING of code modules (that cannot be written in Python) is certainly one way to assemble a system from pre-built legos.

    If you refer to knowing what I'm talking about as gatekeeping and egoism, might I suggest that you insist less forcefully in the correctness of incorrect things you state? we could be done with this spat in short order if YOU would refrain from speaking falsehoods. lies.untrue things.

    I look forward to your lisp c compiler. make sure that it's 100% lisp from the bottom up, or I'll consider you're having ceded my point. Consider that the lisp you author in has a garbage collection system that lisp cannot have written originally, nor has any semantics for the underlying memory structures of, but hey, I guess if one is committed to pretending that all languages are equal for all tasks, who am I to question ones self-identification with a given language.

decimal.js

Posts with mentions or reviews of decimal.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-16.
  • Floats Are Weird
    1 project | news.ycombinator.com | 19 Feb 2024
  • Decoding Why 0.6 + 0.3 = 0.8999999999999999 in JS and How to Solve?
    4 projects | dev.to | 16 Nov 2023
    ii) Third-Party Libraries There are various libraries like math.js, decimal.js, big.js that solve the problem. Each library functions according to its documentation. This approach is comparatively better.
  • Front-End Dilemmas: Tackling Precision Problems in JavaScript with Decimal.js
    1 project | dev.to | 15 Sep 2023
    Desperate for a solution, I stumbled upon Decimal.js, a JavaScript library that provides arbitrary-precision decimal arithmetic. I was intrigued, so I decided to give it a try.
  • Rant - Javascript should be able to do simple f**king math by now
    3 projects | /r/Frontend | 9 Jun 2023
    I too wish JS had a dedicated Decimal Type, but there is plenty of 3rd party libraries available like decimal.js
  • The Last Breaking Change | JSON Schema Blog
    6 projects | /r/javascript | 5 Mar 2023
    For your particular example though, if we keep in mind that the input data to be validated is JSON-serializable, only a string could possibly accommodate the precision expected of a decimal from among the JSON-serializable JS primitives. You could use one or more regex patterns to describe the allowable permutations. The resultant schema would be cross-platform since it doesn't use custom keywords - nice! You can also use unions if you want to say that integers, NaN, and Infinity are also allowed per the docs there.
  • Javascript precision with significant zeros
    1 project | /r/node | 17 Jan 2023
    i've used Decimal.js to account for floating point issues in JS before. maybe this will help? I realize its not native and is a 3rd party lib - but its intent is to handle floating point issues and precision. That kinds sounds like the tree you're barking up right now. maybe it will help.
  • I'm too afraid to ask
    1 project | /r/ProgrammerHumor | 1 Jan 2023
    In the example provided, the name of the library is literally Decimal.js: https://mikemcl.github.io/decimal.js/
  • [AskJS] Are there numeric textbox widgets with built-in support for big numbers like decimal.js?
    3 projects | /r/javascript | 2 Dec 2022
    I'm working on a project where users will enter numbers like 9,999,999,999.99999 (up to 15 digits, up to 5 of them decimal) and we are having a problem with Numbers losing precision beyond certain number of digits (a typical issue for IEEE Standard 754 Floating Point Numbers, the 0.1 + 0.2 problem). I've solved this problem in a few projects before with the help of decimal.js or bignumber,js . In those cases, we kept user-input as strings and used a few custom-made numeric textbox widgets to accommodate this. Unfortunately, those widgets were proprietary... Now I need one again, but can't find anything. Do they exist?
  • Show HN: I made a web-based notepad with a built in unit calculator
    18 projects | news.ycombinator.com | 17 Aug 2022
    Looks good! I love the idea of the embedded calculator

    I noticed that it doesn't handle remainder/modulo (%) equations:

    "10 % 2" results in: "Left hand side of addition cannot be a percentage."

    It does look like decimal.js can handle that: https://mikemcl.github.io/decimal.js/#mod

    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...

  • [AskJS] How do you deal with floats in production apps?
    4 projects | /r/javascript | 13 Aug 2022
    https://github.com/MikeMcl/decimal.js/ great library

What are some alternatives?

When comparing V7 and decimal.js you can also consider the following projects:

V8 - The official mirror of the V8 Git repository

mathjs - An extensive math library for JavaScript and Node.js

Duktape - Duktape - embeddable Javascript engine with a focus on portability and compact footprint

bigint-money - A Money class for high precision calculations using the ESnext bigint type.

Lua - Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.

0.30000000000000004 - Floating Point Math Examples

libffi - A portable foreign-function interface library.

liveCalc - having fun with arithmetic

nelson - The Nelson Programming Language

Brick\Math - Arbitrary-precision arithmetic library for PHP

Wren - The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.

eslint-plugin-big-number-rules - Enforce (or automatically fix) finance-safe calculations using BigNumber or similar libraries.