Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →
Decimal Alternatives
Similar projects and alternatives to decimal
-
-
Stream
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
-
Gin
Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
-
-
-
-
-
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
-
-
-
urfave/cli
A declarative, simple, fast, and fun package for building command line tools in Go (by urfave)
-
-
-
-
jwt-go
Discontinued ARCHIVE - Golang implementation of JSON Web Tokens (JWT). This project is now maintained at:
-
-
-
Golang Crypto Trading Bot
A golang implementation of a console-based trading bot for cryptocurrency exchanges
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
decimal discussion
decimal reviews and mentions
-
Trouble understanding rounding when the next digit is after round precision is a #5?
Try it in JS with console.log(4.225 * 100);, you'll see the same unexpected result. Depending on your needs, it's actually fine to just be off by some amount. If it does really matter, then use an arbitrary precision library like https://github.com/shopspring/decimal to get the results you need.
-
Handling currency values: facts and best practices
Most programming languages ( JavaScript, PHP, Go, Python, Java, C# ) have built-in support or 3rd-party libraries for handling this data type, even though the internal implementations can differ:
-
Any go and python number experts here?
while working with money, dont use floats, use something like https://github.com/shopspring/decimal (go std lib doesnt have its own decimals yet)
-
my first golang project!
Integers, or something like this: https://github.com/shopspring/decimal
-
80x improvements in caching by moving from JSON to gob
I make heavy use of caching, and was caching both in-memory and in Redis using JSON to convert the data in to a string. The struct itself isn't super complicated, one level nested, and some fields use the shopspring/decimal library.
-
Unexported interfaces usage question
I actually use this to represent monetary values btw :)
-
How to round(2) float64?
Check out https://github.com/shopspring/decimal for doing money related calculations.
-
Library recommendation -- money calculations, more accurate handling of floats
We personally use https://github.com/shopspring/decimal and it works well.
-
What are your favorite packages to use?
decimal, one of the first Go library that created to work with decimal and monetary value.
-
What libraries from other languages do you wish were ported over into go?
https://github.com/shopspring/decimal also.
-
A note from our sponsor - Stream
getstream.io | 20 Jul 2025
Stats
shopspring/decimal is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.
The primary programming language of decimal is Go.