Jan Hoogeveen

Results 18 comments of Jan Hoogeveen

Basic auth would be great while still developing applications that are not supposed to be public yet. Bonus points for adding an IP whitelist too serve as well.

Additionally, grouping these into versions would be even better It seems like a logical conclusion to grouping changes! How Prismic does this: https://user-guides.prismic.io/en/articles/778358-what-is-a-release

I realize another solution is to wrap `` in `` but I'm not sure if that's frowned upon? 🤔 One significant downside of this approach is that you get a...

Hey @andy-hook, great to hear! Curious to see what kind of API you're going to end up! 👍🏻 I really appreciate your example, it looks solid and easy enough to...

Found out that I can do this in the component that needs styling: ` import React, { Component } from 'react'; if (__CLIENT__) { require('leaflet/dist/leaflet.css'); } ` Then again, not...

See: https://github.com/NYTimes/kyt/issues/213#issuecomment-277010440

In my apps I can simply check for the **CLIENT** variable, works like a charm so far... ``` js componentWillUpdate() { if (__CLIENT__) { this.someFunction(); } } ```

Looks to me like `/utils` is a place where you can place small snippets you can use throughout the application. Small functions to build bigger things with. `/helpers` is more...

Pull request works fine in my repo!

Just to chime in: I've made a fork as well based on the work from https://github.com/julianvmodesto/kyt-starter-universal-redux and cleaned it up a little bit. Added an example reducer to the store...