4.0.3 • Published 8 years ago
meteor-todo v4.0.3
Meteor todo
This is a basic todo app with the meteor platform and React.

Installation
Meteor
Following the meteor installation procedure.
On OSX / Linux:
curl https://install.meteor.com/ | shReact
The app is running with react, sometime it is not installed automatically.
After installing meteor, go into the todo-app/ folder and make sure you have the react dependencies installed using:
meteor npm install --save react react-domGetting Started
Basic use
Then start the app with:
meteorThe the app should be running at localhost:3000/.
Database manipulation
Once the app is started, you can open a new terminal and manually add a todo item with this command:
meteor mongoA mongo DB is created automatically with meteor, add a new task that will be store in this database with:
db.tasks.insert({ text: "Hello world!", createdAt: new Date() });