Arham Jain

Results 38 comments of Arham Jain

Additionally, it would be nice to have an additional event that is fired on connect, and potentially one on disconnect just for completeness. The actual websocket object should be included...

Yep, that's a bug. There are workarounds (like have the current color be a part of the `id` attribute) but those are a hack. To be honest I'm kind of...

That's why I'm surprised - I've literally seen that code, and had it work in many cases, but I'm not super sure what's going on here.

Hm, I left this issue open as I was able to reproduce some sort of unexpected behavior: When I click on the up arrow once, it increments, but then the...

Yeah, the SO link doesn't seem to directly apply here. I tried this: ```html ``` just in a normal HTML file and it doesn't show the same behavior, which makes...

How should it be handled though? A status of 0 just means a (client-side) error, and according to that StackOverflow post the easiest way to figure out what the error...

Hm, with ```nim include karax / prelude import karax/vstyles proc createDom(): VNode = result = buildHtml(tdiv(style = style((StyleAttr.cssFloat, kstring"right")))): text "Hello World!" setRenderer createDom ``` I get ```html Hello World!...

I recently brought this up on the Nim Discord, but should (better) routing be included as a part of Karax, similar to Kajax? By better, I mean something very similar...

I tried doing something like what I said here: https://github.com/ajusa/kautil/blob/master/karoute.nim#L36 Only possible issue is that it relies on jester for the route parsing. If you think that is okay, I...

While I mostly agree with you, I also don't want to basically copy paste/rewrite the routing handling that Jester already does. Code duplication is almost never a good sign. Plus...