Re: Can the nim compiler run in the browser? Experimenting Nim to template web pages

2020-05-02 Thread Kvothe
Nice, i was asking for the svelte approach in nim on the gitter channel the other day. It’s an interesting idea.

Re: Beginner help with http client

2018-12-22 Thread Kvothe
Thanks for the reply. Unfortunately removing the await after the echo it refuses to compile. if i keep the await and put asyncCheck it complies but does not print any response. Finally, if instead of asyncCheck i use waitFor it prints everything as expected, but does it in a synchronous way.

Beginner help with http client

2018-12-21 Thread Kvothe
Hello everybody, I don't know if this is the right place to ask for simple things. I'm a complete novice to NIM and programming in general. I'm trying to make a few http post requests. I managed to create the code to execute them sequentially but then i wanted to speed it up. I attempted with as