I had this problem. This is due to the node version, support for Meteor node 0.10.36 or higher version
I just watched my steps, it works well
Build the meteor app and make sure it works without errors.
meteor create todo
Go to todo application directory
cd todo
Add and commit using GIT
git init git add . git commit -am "Initial commit"
Build a heroku app with buildpack
heroku create
Add Hero meteorite configurations
heroku addons:add mongolab:sandbox heroku config:add MONGO_URL=<mangolap url> heroku config:add ROOT_URL=https:
For MONGO_URL. Just create an account and get url from https://mongolab.com/
Click on your changes in Heroku.
git push heroku master
My meteor app on Heroku :) https://damp-bastion-7974.herokuapp.com/
source share