Search code examples
meteorraspbianraspberry-pi3

Installing Meteor on Raspbian


I'm looking for a guide to installing Meteor, including NodeJS and MongoDB, on Raspbian. I have seen a couple of online articles, however, they are 3-4 years old.


Solution

  • Found the answer and posting it here for others who may have the same question.

    Part of these instructions are from: https://github.com/4commerce-technologies-AG/meteor

    Install meteor for ARM processors on Raspbian:

    cd $HOME
    
    git clone --depth 1 https://github.com/4commerce-technologies-AG/meteor.git
    
    $HOME/meteor/meteor --version
    

    Create a symlink

    cd /usr/bin
    
    sudo ln -s $HOME/meteor/meteor meteor
    

    Test your install

    cd $HOME
    
    meteor create hello-world
    
    cd hello-world
    
    meteor
    

    Open your browser to http://localhost:3000 to see the app working.