How are you handling your money?

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • big.js

    A small, fast JavaScript library for arbitrary-precision decimal arithmetic.

  • Another different approach maybe to have the money represented in the decimal in your database at the decimal places of the currency with the highest decimal point you are going to be dealing with for example using Decimal(n, 2) in case of fiat, and perform your calculations in arbitrary-precision Decimal type. In javascript, using libraries like Big.js , Decimal.js will be of help.

  • decimal.js

    An arbitrary-precision Decimal type for JavaScript

  • Another different approach maybe to have the money represented in the decimal in your database at the decimal places of the currency with the highest decimal point you are going to be dealing with for example using Decimal(n, 2) in case of fiat, and perform your calculations in arbitrary-precision Decimal type. In javascript, using libraries like Big.js , Decimal.js will be of help.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • Brick\Math

    Arbitrary-precision arithmetic library for PHP (by brick)

  • In Java and Ruby, BigDecimal is an inbuilt class that can be used. For PHP, you can checkout the Brick Math Library Basically, just find the arbitrary-precision Decimal type/Class/Library in your choice of language. Got another approach, please do let me know in comment section.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Decoding Why 0.6 + 0.3 = 0.8999999999999999 in JS and How to Solve?

    4 projects | dev.to | 16 Nov 2023
  • Solving the "floating point precision" problem with... floats?

    2 projects | dev.to | 22 May 2023
  • BigDecimal equivalent. What do you use?

    1 project | /r/node | 15 Dec 2022
  • [AskJS] Are there numeric textbox widgets with built-in support for big numbers like decimal.js?

    3 projects | /r/javascript | 2 Dec 2022
  • Working with Currency Values in TypeScript

    1 project | dev.to | 1 Dec 2022