ringabout

Results 441 comments of ringabout

I'm working on a frontend framework based on Nim JS backend atm. I will think of implementing a HTTPs server later.

I think you counld use runableExamples for simple examples. runnableExamples will be checked.

You could create a seperate repo in planety organization and rely on global prologue installation.

You could ref to this document https://nim-lang.github.io/Nim/docgen.html Generally, you can write an example file with rst comments like ```nim # example1.nim ## Using GET, POST, PUT, PATCH, DELETE and OPTIONS...

First you could switch to `-d:usestd` in windows to reduce memory usage. For the time being, both HTTP servers that Prologue supports don't provide streaming body. https://github.com/nim-lang/Nim/pull/13147 has tried to...

May be related to this issue. If serving same file, I think you could use some memory cache tables instead of reading files. Or you could use nginx to serve...

Well, the future plan is to support https://github.com/status-im/nim-quic

With `asynchttpserver` backend, it's easy to run multiple servers in parallel. But `httpx` backend uses one event loop(blocking), it's hard to implement this.

That's strange. Could you try the latest Prologue version (0.5.4) which includes a critical fix?

Thanks for choosing `Prologue` famework :) You should look at this issue: https://github.com/nim-lang/Nim/issues/14224. I guess ORC still needs improvement. > Did some testing of nimforum with ORC both single-threaded/multi-threaded. >...