
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
Cborious: Fast standards-compliant CBOR library for Nim 2.x
Announcing Cborious for Nim 2.x! What: Fast, standards-compliant CBOR library for Nim with streaming I/O, canonical/deterministic modes (RFC 8949), and compile-time encode/decode derivation inspired …
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 and sublime text …
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.
ANN: New library to parse TOML files - Nim forum
I think you are conflating the reference pages nim generates and plain documents explaining how to use them. People don't go to Nim's system module and read it from beginning to end, they go to the …
is jester now working well with nim version 2 - Nim forum
Jester worked fine in Nim v1, at least with the versions I tested. All you have to do is run nimble install jester and then write your web app with it.
TinyCC/tcc vs zig cc compile-times/etc. - Nim forum
For example, with suggest.nim, uncached zigcc was 14.1 sec vs 1.19 sec for tcc -- 12X slower and a real human-noticeable difference. In short, a zig cc backend seems to really magnify "risk of …
seaqt - a new set of bindings for Qt - Nim forum
All you need to compile it is seaqt itself, a Qt installation with -dev packages (pkg-config is used to find Qt) and Nim 2.0+ (memory management is done "mostly" via destructors). There are of course still …
How to set discard or empty statement to a default value of ... - Nim
It seems a statement cannot be specified to a default value of untyped parameter. I can workaround this by using overloadig or a proc with discardable pragma, but they requires extra code. Is there simpler …
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. :-) …