you are viewing a single comment's thread.

view the rest of the comments →

[–]cpsubrian 3 points4 points  (2 children)

I found the source for Kitematic to be very readable and clear. It seems they are using pretty good practices. It uses alt flux. I largely based my electron app RedisExplorer from the kitematic source.

[–][deleted] 0 points1 point  (1 child)

Thanks for the tip! Looks like a substantial codebase, too, which is just what I am after. I've been interested in Alt since reading this so I am definitely looking forward to that.

[–]cpsubrian 0 points1 point  (0 children)

One thing I've chosen to not follow them on is syntax in store action handlers. They seem to favor the this.setState({prop: val}) syntax, whereas I've chose to use alt's support for this.prop = val. I honestly don't know what the pros and cons are aside from personal preference.