Skip to content

Files

Latest commit

cf6d7f1 · Sep 21, 2015

History

History
This branch is 23746 commits behind meteor/meteor:devel.

meteor-base

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 6, 2015
Sep 21, 2015

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.