meteor-todo
v4.0.3
Published
Meteor simple todo app
Downloads
4
Readme
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/ | sh
React
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-dom
Getting Started
Basic use
Then start the app with:
meteor
The 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 mongo
A 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() });