This is great since it provides an OFFICIAL opinionated set of tools for building React apps which is typically the largest barrier of entry for new developers looking to experiment with this technology. However, it is missing a lot of core features that typically come standard with Webpack/React boilerplates. Directly from their Github: Some features are currently not supported: Server rendering. Testing. Some exper…
Create React Apps with No Configuration
201–210 of 250 posts
Re: Create React Apps with No Configuration
#202Earlier quoted context omitted.
And yet nothing much changed in the needs of webapps or in the Javascript language in the past two years. And if we CAN'T "make decisions today based on the state of things years ago", then we're really screwed.
> And yet nothing much changed in the needs of webapps or in the Javascript language in the past two years. But Ember has likely come a long way in that time - I think this is mcardleliam's point.
Re: Create React Apps with No Configuration
#203Re: Create React Apps with No Configuration
#204Earlier quoted context omitted.
No, that becomes a nightmare to maintain. Use Redux and connect any component that needs data to the store and get the data needed directly.
Not much more to say about this than that I do not agree, that I think flux-alikes are overused, and that it's just as easy to go too far the other direction, where nothing has any state even for trivial UI state concerns.
Re: Create React Apps with No Configuration
#205Earlier quoted context omitted.
If we let you tweak them, any minor update on our part would be a breaking change. We wouldn’t be able to introduce new features or update the underlying tools without a lot of risk. This is why we don’t let you change the configs. If you have a specific pain point, please file an issue. I think we can make defaults better. It takes more work but is more rewarding in the end because it benefits everyone.
This is super useful for helping beginners overcome initial barriers and quickly become productive, but do you see this as something that most will eventually grow out of?
We think in the beginning many will "eject" but we will gradually make the defaults better to cover more and more use cases.
Re: Create React Apps with No Configuration
#206Loving it! I always wanted to get started with ReactJs but looks like time has come! I tried the module and I am loving the "Welcome to React" page on my localhost! Thank you!!! PS. Already in /src/App.js , and wow live reloading without gulp or browersync , it is so simple to get started! Thank you!
I thought the live reloading was just for CSS?
Re: Create React Apps with No Configuration
#207Earlier quoted context omitted.
Please say it isn't so! Class is terrible syntactic sugar to please old Java programmers. I'd be really interested in why this decision would be made. Im just getting going in React and am looking to make a move away from Angular, because Angular 2 is so hyper focused on classes and decorators. I like React because it's closer on the purity scale to something like Cycle.js. But nevermind me, React is a great tool, an…
React's lifecycle methods and other similar features require some kind of "object instance" to exist. Since React was created prior to ES6, the React team created their own "inheritance"-ish approach, which is something that every JS library out there was doing as well. One of the main arguments for classes being included in the ES6 standard is that it's a common approach that libraries can converge on and use togeth…
We don't like classes, but we don't like "pseudo classes" (createClass) even more. Better the devil that's standardized.
We already offer a way to create stateless components with just functions. We will keep exploring that space and eventually might have a class-less solution we like that satisfies all our use cases.
Re: Create React Apps with No Configuration
#208Is it me, but is not Angular just taking over? Kind of Google vs Facebook thing. Just think Google won this one.
Re: Create React Apps with No Configuration
#209Earlier quoted context omitted.
Only for those used to ember-cli. For the huge majority this is irrelevant.
It provides a consistent mental model across frameworks for building front-end applications via CLI.
Re: Create React Apps with No Configuration
#210Earlier quoted context omitted.
> And yet nothing much changed in the needs of webapps or in the Javascript language in the past two years. But Ember has likely come a long way in that time - I think this is mcardleliam's point.
For me the creation of ember cli was like admiting their framework didn't work as good as they intended.
Also you're flat out wrong: Ember-cli isn't really anything to do with the framework. You don't need it to write Ember apps, it's just the communities command line tool for managing Ember projects. That's all.