Show HN: A minimal setup for React/ES6 sites with a Firebase back end
1–10 of 40 posts
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#2Sorry, but with those many dependencies, I could hardly call that minimal.
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#3https://github.com/Jon-Biz/simple-static-react-firebase/blob... Sorry, but with those many dependencies, I could hardly call that minimal.
And, only React, ReactDom and Firebase (which has to be required in the page html, unfortunately, due to Firebase issues) actually ship down to th client
While I can appreciate the benefit of keeping your entire codebase small (especially the bits that aren't yours), I'm not entirely certain of the wisdom of trying to build a react/es6/less/sass transpiling development environment with as few external dependencies as possible :)
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#4https://github.com/Jon-Biz/simple-static-react-firebase/blob... Sorry, but with those many dependencies, I could hardly call that minimal.
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#5https://github.com/Jon-Biz/simple-static-react-firebase/blob... Sorry, but with those many dependencies, I could hardly call that minimal.
That said, leveraging Browserify, Bubleify[0] and Ramda[1] alone can get you pretty far in a seriously maintainable way with modern code, which is super nice: keeps compile times stupid quick and reduces some of the cognitive overhead (and possible maintenance drama) that too many third-party deps introduce.
There's a balance to be struck here, and it's a hard problem, I think.
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#6Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#7From the people I talked to it seems that the main audience for firebase is mobile engineers that either don't have the skillset or the time to learn how to build a backend system. Most people I talked to also told me they wouldn't use firebase if they could build a backend.
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#8Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#9Apologies for the question but what benefits do I get if I build on firebase? From the people I talked to it seems that the main audience for firebase is mobile engineers that either don't have the skillset or the time to learn how to build a backend system. Most people I talked to also told me they wouldn't use firebase if they could build a backend.
Re: Show HN: A minimal setup for React/ES6 sites with a Firebase back end
#10Has anyone here dealt with Firebase's authentication / authorization model in production?