Install Meteor (CentOS) - wollardj/Mandrill GitHub Wiki

Previous: Configure Nginx


Meteor is the framework upon which Mandrill is built. Meteorite is a companion to Meteor which, among other things, allows direct integration with npm and atmosphere modules. We need both of these tools to bundle Mandrill into a stand alone node application.

If the commands below complain about not being able to find npm, read this.

# First, install meteor
curl https://install.meteor.com | /bin/sh

# next, install meteorite
sudo npm install -g meteorite

Next: Install MongoDB