How to use a custom MongoDB installation from an external server.
Continue reading “Meteor: using external MongoDb in Windows and Linux”
How to use a custom MongoDB installation from an external server.
Continue reading “Meteor: using external MongoDb in Windows and Linux”
Lately I’ve been using ReactJS a lot to build rich user experiences on the web, and it’s been absolutely great. A huge improvement over AngularJS in my humble opinion.
The only ugly spot with ReactJS is JSX. I can see the appeal of using declarative HTML in templates for readability, but having switched to HAML (and Slim and Jade) long ago, writing HTML feels like a step backwards.
By default, we have been using a Meteor package named autopublish. This means that we haven’t had to code specific publishevents for changes to be broadcast from the server to the client. This is great for testing, but we want to have a bit more control over what events and documents get published so that we that can improve both performance and security.
If we have a large dataset, we may not want to return the entire collection every time. If autopublishis being used, the entire collection will return, and this can slow things down or expose data that we don’t want to expose.
Chuẩn dưới đây do mình đúc kết từ nhiều project và tổng hợp kinh nghiệm từ bạn bè.