Skip to content

Instantly share code, notes, and snippets.

View douglascorrea's full-sized avatar
🏠
Working from home

Douglas Correa douglascorrea

🏠
Working from home
View GitHub Profile
@douglascorrea
douglascorrea / install-nodejs-amazon-ec2-centos
Last active July 7, 2019 09:46
Install NodeJS on Amazon Linux EC2 (CentOS)
sudo yum install openssl openssl-devel
sudo yum groupinstall "Development Tools"
sudo yum install git-core
git clone [email protected]:nodejs/node.git
cd node
./configure
make