decimal.js VS eslint-config-standard

Compare decimal.js vs eslint-config-standard and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
decimal.js eslint-config-standard
22 7
6,113 2,561
- 0.9%
0.0 8.6
8 months ago 6 days ago
JavaScript TypeScript
MIT License 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.

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

eslint-config-standard

Posts with mentions or reviews of eslint-config-standard. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-11.
  • PURISTA - Thanks to amazing open-source software
    7 projects | dev.to | 11 Sep 2023
    eslint-config-standard
  • Setting up ESLINT with TS/JS in your React project in 2023
    2 projects | dev.to | 20 Mar 2023
    Based on your requirements and environment, answer the questions accordingly. At least with eslint version 8.0.1, you are only presented with 2 style guides: standard and XO. Personally, I prefer the standard styling guide but at any give time, it is a personal choice and as such feel free to choose any from a bunch of available options. Once all dependencies are installed, ensure that you have the following packages added as devDependencies to your project:
  • [AskJS] favorite JavaScript library
    6 projects | /r/javascript | 28 May 2022
    Hmm right, haven't found too many controversial things in https://github.com/standard/eslint-config-standard/blob/master/.eslintrc.json, besides no-semi fixed by semi-standard and comma-dangle "never" (sucks for git history, they should allow it for multiline cases https://eslint.org/docs/rules/comma-dangle#always-multiline)
  • Some tips on tooling for improving our code
    14 projects | /r/learnprogramming | 8 Feb 2022
    ESLint plugin for StandardJS; allows you to format code as StandardJS, but clear more serious errors too.
  • A notable JavaScript developer shamelessly copied one of my most downloaded nod
    64 projects | news.ycombinator.com | 26 Sep 2021
    The JS Open Source Community is filled with people grifting things like this. Quite notably, there's a linter called JS Standard Style, which actually has nothing to do with JS Standards.

    It's marketed as if it was a standard, the fact that it isn't is tucked away in the readme, and also -- the entire project is just a wrapper around someones .eslintrc file, yet barely any credit is given to the ESLint devs who do all the work.

    Go ahead and read the readme here, https://github.com/standard/standard. Could you genuinely tell this wasn't really a JS Standard at a glance? Could you tell this was just a config file for someone elses work? None of the donations go upstream to eslint by the way.

    Hell, the actual config file is hidden inside a sub repo:

    https://github.com/standard/eslint-config-standard

    which has the audacity to claim

    > This module is for advanced users. You probably want to use standard instead :)

    It's a config file for someone elses program! Why does this library go through so much effort to hide that it's just someones config file? Why on earth is it called JS Standard Style?

    The whole community is filled with slimy nonsense like this.

  • JavaScript Is Weird
    7 projects | news.ycombinator.com | 28 Jun 2021
    Eslint is the default linter. Standard is a curated list of rules with good quality.

    https://github.com/standard/eslint-config-standard

    I would start with that and tweak what you don't like

  • Getting Started with Next.js - VSCode, ESLint and Prettier
    9 projects | dev.to | 31 May 2021
    Well done, we managed to set up ESLint using Airbnb’s JavaScript styling guide to our newly created Next.js project. You could have used another popular styling guide like Google, Standard, or even create your own to your liking.

What are some alternatives?

When comparing decimal.js and eslint-config-standard you can also consider the following projects:

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

prettier - Prettier is an opinionated code formatter.

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

standard - Ruby's bikeshed-proof linter and formatter 🚲

0.30000000000000004 - Floating Point Math Examples

eslint-config-google - ESLint shareable config for the Google JavaScript style guide

liveCalc - having fun with arithmetic

success-symbol - Cross-platform success symbol.

Brick\Math - Arbitrary-precision arithmetic library for PHP

bhai-lang - A toy programming language written in Typescript

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

nanocolors - Use picocolors instead. It is 3 times smaller and 50% faster.