| ▲ | nmfisher 11 hours ago | ||||||||||||||||
As a long time Dart/Flutter developer, I think Dart is slowly making its way to the server too. It’s more performant than Python (and I assume Ruby too), and nicer to work with than other statically typed languages (which I guess are mostly JVM or CLR based). The third party package ecosystem is smaller but I think this will become less and less relevant as coding agents get better. | |||||||||||||||||
| ▲ | autogn0me 10 hours ago | parent | next [-] | ||||||||||||||||
Agreed. I feel like dart is where Python was 20 years ago. It’s exciting and its integration story is taking off. | |||||||||||||||||
| |||||||||||||||||
| ▲ | solatic 8 hours ago | parent | prev [-] | ||||||||||||||||
> third party ecosystem is smaller... less and less relevant as coding agents get better I disagree. The problem isn't with getting an implementation for some favored sort algorithm, it's about integrating with external systems. That's a million times easier when you're not crafting the equivalent of an untyped curl call dealing with raw JSON bodies and can instead use official SDKs provided by the external system provider. Not even GCP offers a client SDK in Dart, let alone AWS or Azure. Sure, there's a Postgres package for Dart, but you're working with raw arrays on the result rows - no Dart support in sqlc. What about a payment provider like Stripe? Nope. Or an email provider like SendGrid? Also no. I mean... this is one of the reasons why Go is so popular. You're practically guaranteed to find an SDK for the service you need to connect to. And that's not because the Go team at Google had some special marketing magic that the Dart team at Google didn't have access to, that's just organic growth. Do you really think services are going to wake up across the industry and start offering Dart SDKs?? | |||||||||||||||||
| |||||||||||||||||