Some meteor packages necessary for most application.
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”
Meteor: Free E-Books & Learning Resources
Meteor is an open-source JavaScript application framework for building real time web and mobile apps. In this post we have collected free e-books & tutorials to help you get started with Meteor development.
Continue reading “Meteor: Free E-Books & Learning Resources”
Meteor: The security and accounts – Part 1
By default, if we were to put your metor app into use, there are some security issues inside the app itself that we’d have to deal with first.
First and foremost, what’s to stop someone from accessing our app and erasing their name from an item they borrowed? That scumbag STEVE might just keep our linear compression wrench forever if he were so inclined, and we’d have no way of proving whether or not he still had it.
Continue reading “Meteor: The security and accounts – Part 1”
Meteor: Structuring your application
A Meteor application is a mix of client-side JavaScript that runs inside a web browser or PhoneGap mobile app, server-side JavaScript that runs on the Meteor server inside a Node.js container, and all the supporting HTML templates, CSS rules, and static assets. Meteor automates the packaging and transmission of these different components, and it is quite flexible about how you choose to structure those components in your file tree.