|
|
|
|
|
by arc776
2079 days ago
|
|
Whilst there is a pretty well fleshed out stdlib, since Nim can compile to C, C++, Javascript, and even LLVM, you can use any library written for those languages/platforms. That's a huge mass of ecosystems that are natively accessible. Nim's FFI is excellent and makes this very easy without worrying about the ABI (since you're compiling to the target languages). There's also excellent interop with Python with embedding Python within Nim or calling Nim from Python. |
|
Currently I write backends in Rust and frontends in TypeScript and it works really, really well.