This is the second exercise from Meteor's Lessons.
The goals of this exercise is to dive into Meteor's basics such as:- Template HTML and Helpers
- Intro to MongoDB
- Publication/Subscription
- Add/Remove a package
Requirements:
- User should be able to create an account
- In order to create an account he must insert
- username
- password
- User could type a message into an input text box (html tag) and publish it by pressing a submit button
- Anyone could write a message
- If user is logged in, then his username should be appeared next to his name, otherwise “Anonymous”.
- Autocomplete package have to be removed and publish/subscribe to be used instead