Skip to content

Instantly share code, notes, and snippets.

@keyserfaty
Last active August 19, 2016 04:49
Show Gist options
  • Save keyserfaty/20d8106f20179e70b4f1 to your computer and use it in GitHub Desktop.
Save keyserfaty/20d8106f20179e70b4f1 to your computer and use it in GitHub Desktop.
Basics después de formateo
// git
sudo apt-get install git
// node (installs n which would then bring npm/node)
curl -L http://git.io/n-install | bash
n latest
// nodemon
sudo npm install -g nodemon
// express
sudo npm install express -g
sudo npm install -g express-generator
// mongo
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list
sudo apt-get update
sudo apt-get install mongodb
// mongoose
sudo npm install mongoose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment