
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
textalot- TUI I/O library written in Nim - Nim forum
Oct 31, 2025 · Hello everyone. I wanted to share a TUI library I wrote entirely in Nim. This will also serve as a lower-level layer for a more high-level TUI library I’ll complete later, called boxalot — which will …
simpleargs - Dead simple CLI parsing. - Nim forum
Most of Nim's CLI parsing libraries are gigantic macro-heavy opinionated things that are overkill, and don't let you write your own docstrings. The gift that is std/parseopt allowed me to vastly simplify the …
Nim Windows installation experience sucks - Nim forum
Jul 9, 2025 · choosenim doesn't have good tests that actually test the installation of a binary Nim version on windows from scratch and with installing mingw in the process the issue reporter is a bit reluctant …
How to set up/start a Project? - Nim forum
There's the Nim package manager Nimble and its README has a section on project structure. Also, if you use nimble init on the command line, it will create the structure for you to have an easy start. :-) …
we need better support of serialized objects downcast in stdlib - Nim
edit: i meant upcast to its basetype not downcast, sorry. The problem is that every serializer that i've tried (except json), cannot ~downcast~ upcast a serialized message to its base type. json, the only …
Tooling Update: Sep, 2024 - Nim forum
We have also enriched the Nim Panel in the vscode extension with more information about the nimlangserver status, such as Pending Requests and Project Errors, which should help diagnosing …
GUI app with nim - Nim forum
Forum dyskusyjne dotyczące języka programowania Nim, gdzie użytkownicy mogą zadawać pytania, dzielić się wiedzą i omawiać różne aspekty tego języka.
How to Efficiently Implement Microservices with Nim?
Nim compiles to a single executable so deploying once your have an automated, reproductible build system, is very straightforward. Scaling, well it depends what exactly you want to scale.
Recommended GUI library? - Nim forum
The best/most advanced gui library for nim is afaik gintro (gtk). I can also recommend webview for smaller things. Edit: you can always try to statically link the dependencies gui library's tend to have.