GitXplorerGitXplorer
t

meteor-react-poc

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b921df0d8a7cf336d4320e217359343d7db0a056

Merge pull request #1 from thescientist13/project-setup

committed 8 years ago
Unverified
eece57bd8f38af31f2c0bbc7d241c7ebc6f550e9

readme update

committed 8 years ago
Unverified
93e65ec6a74c62099f3be67b2a6466d4f356edc2

complete and delete tasks

committed 8 years ago
Unverified
daeca7db1469a678427f72ed1b028b0b2032736c

add task functionality

committed 8 years ago
Unverified
e195225c546aee67732f44952ded732b3cad1475

reactive tasks list

committed 8 years ago
Unverified
42f2fc63995be2c632e175aafec07b85d66b8f59

reactive tasks list

committed 8 years ago

README

The README file for this repository.

meteor-react-poc

Overview

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.

Installation

If you haven't, install the latest Meteor and NodeJS

  1. Run meteor npm install

Running

  1. Run npm run start

Building

Note: To build iOS application, you will need Xcode 7.2 or higher. Follow the instructions here.

Mobile

  1. For iOS, run meteor run ios

TODO - android support

Appendix

TODO

  1. Rest of the guide
  2. Hosting

Interacting with Mongo

  1. Start the app - npm run start
  2. Connect to Mongo - meteor mongo
  3. Insert some data - db.tasks.insert({ text: "Hello world!", createdAt: new Date() });