Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 930 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 930 Bytes

meteor-base

A default set of packages that almost every app will have. You should only remove this package if you really, really know what you are doing.

It comes with the following packages:

  1. meteor - Super basic stuff about the programming environment, and a handler for the css file type.
  2. webapp - The actual web server that handles connections, serves files, etc.
  3. underscore - A library with lots of useful utilities that most of Meteor is built on.
  4. hot-code-push - Refresh the client automatically when the server has new code.
  5. ddp - A protocol for communicating between the client and server. This is what enables Meteor.methods, Meteor.publish, Meteor.subscribe, etc.