So, one thing holding me back from using MongoDB (and thus Meteor) is a lack of understanding how schema can be managed. Say in MongoDB you are storing documents in a collection such as { property: "" }, and decide you want to change that to { property2: "" }. Does that mean you have to script a change to every document to convert these objects?
As far as I know, this is an issue for every database, no? What are you currently using?
Announcing Meteor 1.2 – ES2015, Angular, React, and More
61–70 of 140 posts
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#62It seems like if I want to define a component in a separate file, I'll have to assign it to a global variable if I'm going to compose it in another file.
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#63I'm blown away by Meteor. Using Meteor and React is just buttery smooth. More and more companies are using React now in the startup space, and it's one of the most popular services on StackShare: http://stackshare.io/meteor React integration is a first-class citizen: http://sergiotapia.me/2015/09/18/react-and-meteor-match-made... No weird hacks, lib includes and other nonsense you shouldn't really care about. And you…
I'll jump on when they have first-class support for a DB that isn't Mongo.
[edit] Here's a little hello world tutorial I wrote a few months ago with Couchbase Lite and React Native. https://gist.github.com/jchris/3c32524577deff3d69aa
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#64Earlier quoted context omitted.
It's not just useful for SEO; isomorphic React apps render much quicker on first load and for deep linking into your app.
> isomorphic React apps render much quicker on first load source?
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#65Earlier quoted context omitted.
Meteor+React is surprisingly good at what it does. I'd highly recommend this new project for Meteor+React+Webpack: https://github.com/thereactivestack/meteor-webpack-react-kic... The only thing that I really disliked in Meteor was the reload/refresh for larger projects. This is typically a problem with anything Node related and refresh/reload times were around 10 seconds at its worst. With the Webpack+React+Webpack,…
Are you seeing 10 second rebuilds with incremental builds? Or is this 10 seconds for a complete rebuild?
I believe they were incremental builds. Whatever happens by default when you make a change to a file.
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#66Earlier quoted context omitted.
Meteor+React is surprisingly good at what it does. I'd highly recommend this new project for Meteor+React+Webpack: https://github.com/thereactivestack/meteor-webpack-react-kic... The only thing that I really disliked in Meteor was the reload/refresh for larger projects. This is typically a problem with anything Node related and refresh/reload times were around 10 seconds at its worst. With the Webpack+React+Webpack,…
Are you seeing 10 second rebuilds with incremental builds? Or is this 10 seconds for a complete rebuild?
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#67So, one thing holding me back from using MongoDB (and thus Meteor) is a lack of understanding how schema can be managed. Say in MongoDB you are storing documents in a collection such as { property: "" }, and decide you want to change that to { property2: "" }. Does that mean you have to script a change to every document to convert these objects?
As far as I know, this is an issue for every database, no? What are you currently using?
In MongoDB you have to manually walk all your objects and migrate them.
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#68So, one thing holding me back from using MongoDB (and thus Meteor) is a lack of understanding how schema can be managed. Say in MongoDB you are storing documents in a collection such as { property: "" }, and decide you want to change that to { property2: "" }. Does that mean you have to script a change to every document to convert these objects?
That's not data management. That's schema management (migration). And yes, you have to script a change to every document.
Re: Announcing Meteor 1.2 – ES2015, Angular, React, and More
#69Can't wait to start learning this language. Are there any great resources like how the Laravel community has Laracasts, but for Meteor?