Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Meteor Up (mup for short) is a command line tool that allows you to deploy any meteor app into your own server. It supports Ubuntu 12.04 or higher servers from any Cloud Infrastructure Provider.
Table of Contents
settings.json
npm install -g mup
If you are looking for password based authentication, you need to install sshpass on your local development machine.
mkdir ~/my-meteor-deployment
cd ~/my-meteor-deployment
mup init
This will create two files in your Meteor Up project directory, which are:
mup.json
is commented and easy to follow (it supports JavaScript comments)
{
// Server authentication info
"servers": [
{
"host": "hostname",
"username": "root",
"password": "password"
// or pem file (ssh based authentication)
//"pem": "~/.ssh/id_rsa"
}
],
// Install MongoDB in the server, does not destroy local MongoDB on future setup
"setupMongo": true,
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": true,
// WARNING: If nodeVersion omitted will setup 0.10.28 by default. Do not use v, only version number.
"nodeVersion": "0.10.28",
// Install PhantomJS in the server
"setupPhantom": true,
// Application name (No spaces)
"appName": "meteor",
// Location of app (local directory)
"app": "/Users/arunoda/Meteor/my-app",
// Configure environment
"env": {
"PORT": 80,
"ROOT_URL": "http://myapp.com",
"MONGO_URL": "mongodb://arunoda:fd8dsjsfh7@hanso.mongohq.com:10023/MyApp",
"MAIL_URL": "smtp://postmaster%40myapp.mailgun.org:adj87sjhd7s@smtp.mailgun.org:587/"
},
// Meteor Up checks if the app comes online just after the deployment
// before mup checks that, it will wait for no. of seconds configured below
"deployCheckWaitTime": 15
}
mup setup
This will setup the server for the mup deployments. It will take around 2-5 minutes depending on the server's performance and network availability.
The setup process will require NOPASSWD access to sudo. (Since Meteor needs port 80, sudo access is required.)
You can add your user to the sudo group:
sudo adduser *username* sudo
And you also need to add NOPASSWD to the sudoers file:
sudo visudo
# replace this line
%sudo ALL=(ALL) ALL
# by this line
%sudo ALL=(ALL) NOPASSWD:ALL
When this process is not working you might encounter the following error:
'sudo: no tty present and no askpass program specified'
This is how Meteor Up will configure the server for you based on the given appName or using "meteor" as default appName. This information will help you to customize server for your needs.
/opt/<appName>/app
/etc/init/<appName>.conf
start <appName>
and stop <appName>
/var/log/upstart/app.log
<appName>
is the name of the databaseFor more information see lib/taskLists.js
.
mup deploy
This will bundle the meteor project and deploy it to the server.
Meteor Up checks for if the deployment is successful or not just after the deployment. By default, it will wait 10 seconds before the check. You can configure the wait time with deployCheckWaitTime
option in the mup.json
You can use an array to deploy to multiple servers at once.
To deploy to different environments (e.g. staging, production, etc.), use separate Meteor Up configurations in separate directories, with each directory containing separate mup.json
and settings.json
files, and the mup.json
files' app
field pointing back to your app's local directory.
Sometime, you might be using Meteor from a git checkout or using mrt
. By default Meteor Up uses meteor
. You can ask Meteor Up to use the correct binary with meteorBinary
option.
{
...
"meteorBinary": "~/bin/meteor/meteor"
...
}
mup logs -f
Mup can tail logs from the server and it supports all the options of tail
After you've edit environmental variables or settings.json, you can reconfigure the app without deploying again. Use following command for that.
mup reconfig
This will also restart the app, so you can use it for that purpose even if you didn't change the configuration file.
You can't access the MongoDB from the outside of the server. To access the MongoDB shell you need to log into your server by SSH first and then run the following command.
mongo appName
Meteor UP supports multiple operating systems. See the list of supported operation systems:
All you've to do is, specify the type of os
when defining the server info. See below:
If you've leave
os
as blank,linux
will be set as the default value
{
"servers": [
{
"host": "my-linux-box",
"username": "root",
"password": "password"
},
{
"host": "my-solaris-box",
"username": "root",
"password": "password",
"os": "sunos"
}
],
}
Meteor Up supports multiple deployments into a single server. Meteor Up only does the deployment; if you need to configure subdomains, you need to manually setup a reverse proxy yourself.
Let's assume, we need to deploy a production and the staging versions of the app into the same server. Production App runs on the PORT 80 and staging app run on PORT 8000.
We need to have two separate Meteor Up Projects. For that create two directories and initialize Meteor Up and add necessary configurations.
In the staging configurations add a field called appName
with the value staging
into the mup.json
. You can add any name you prefer instead of staging
. Since we are running our staging app in port 8000, add an environment variable called PORT
with the value 3000.
Now setup both projects and deploy as you need.
If you are using binary npm modules either with meteor-npm or with some other package you can't deploy and run your app by default. That's because, binaries in the bundle are not compatible with your deployment environment.
So, you need to specify binary modules and which packages are then as shown below in your mup.json
.
{
...
"binaryNpmModules": {
"meteor-package-name": ["npm-module1", "npm-module2"]
}
...
}
If you need to see the output of meteor-up
(to see more precisely where it's failing or hanging, for example), run it like so:
DEBUG=* mup <command>
where <command>
is one of the mup
commands such as setup
, deploy
, etc.
FAQs
Production Quality Meteor Deployments
The npm package mup receives a total of 621 weekly downloads. As such, mup popularity was classified as not popular.
We found that mup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.