
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
How to start working with Nim in 2025? - Nim forum
The official Nim extension is the recommended VSCode plugin and is more up to date than the one from nimsaem. VSCode is the most popular Nim IDE. LSP server works well with neovim …
Best practices for initializing objects? - Nim forum
An aspect of Nim that’s giving me trouble is ensuring that objects get initialized properly. I’ve gotten used to constructors in C++/Swift/TypeScript, which enforce that any instance of object …
Concatenate string and int - Nim forum
which is a part of json module. Hence when you concatenate without converting it to string it doesn't work. As I am new to nim I thought I could do such concatenation. But now I know I …
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 …
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.
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 …
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, …
async/await for embedded sysmtems - Nim forum
For something like an embedded system the current async/await is likely to be far too heavy (it allocates far too much on the heap). What I would personally like to see is alloc-free …
Nim version 2.2.4 released - Nim forum
Apr 22, 2025 · It is with great joy that I can share that Nim 2.2.4 is the first Nim version to have its Docker Hub images build and pushed automatically with CI from a repo affiliated with the …