4.0.3 • Published 6 years ago

meteor-todo v4.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Meteor todo

npm version Generic badge

This is a basic todo app with the meteor platform and React.

https://raw.githubusercontent.com/Sylhare/meteor-todo/security/meteor-todo.png

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() });
4.0.3

6 years ago

4.0.2

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago