globalavocado / meteor-todos

to-do list with MeteorJS, TDD and MongoDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

to-do list in MeteorJS

This branch is for Meteor 1.3, check out the other branch for Meteor 1.2 to see how things were done the old way.

following this tutorial and adding bootstrap with LESS

TDD

  • mocha

Meteor now has more integrated testing functionality with mocha (which needs to be installed as a module). See here for more info.

database

If you need to manually insert tasks into MongoDB:

	...=# meteor mongo
	...=# db.tasks.insert({ text: "Hello world!", createdAt: new Date() });
	...=# exit

About

to-do list with MeteorJS, TDD and MongoDB


Languages

Language:JavaScript 79.0%Language:HTML 21.0%