This project is intended to evaluate technologies and tools related to cross-platform / device application development.
It is mostly interested in understanding the effort to develop mobile apps leveraging web languages and technologies
where possible. As the project name implies, the principle tool being evaluated is Meteor, which is in and of
itself a development platform for writing apps in JavaScript. React is used as the client-side view layer.
It follows this guide from the Meteor docs.
If you haven't, install the latest Meteor and NodeJS
- Run
meteor npm install
- Run
npm run start
Note: To build iOS application, you will need Xcode 7.2 or higher. Follow the instructions here.
- For iOS, run
meteor run ios
TODO - android support
- Rest of the guide
- Hosting
- Start the app -
npm run start
- Connect to Mongo -
meteor mongo
- Insert some data -
db.tasks.insert({ text: "Hello world!", createdAt: new Date() });