codeclubsocial.github.io

The CodeClub Getting-Started Guide

Follow me on GitHub

<- Back

MongoDB

Its a database. You’ll need it to develop your node applications.

Installing MongoDB

Quick Install:

  • MacOS
  • Linux
    • Debian/Ubuntu:
      • sudo apt-get install mongodb
    • Arch:
      1. pacman -S mongodb
      2. pacman -S mongodb-tools
    • Fedora:
      • sudo yum install -y mongodb-org
  • Windows:
    • Chocolatey: choco install mongodb
    • Scoop: scoop install mongodb
    • Download: Download Page


    <- Back