Section Round Up

Review the lessons learned in this chapter.

This chapter took us through the process of creating a full-stack application using MeteorJS. We learned about some of the following topics in this chapter.

Collection schema

In this chapter, we learned that a schema is used to enforce data uniformity in the collection. MongoDB, which is the default database used by Meteor, doesn’t enforce data uniformity. To ensure that data inside our collections conforms to a certain type, we install the SimpleSchema package into our project.

The package is installed by typing the following in the terminal:

meteor npm
...