eChung00
eChung00

Reputation: 633

Trying to deploy node.js app with mongoDB on EC2

is there a GOOD tutorial or resource that I can read to deploy node.js app with mongoDB on EC2 or on linux(ubuntu) server?? I have read several of the tutorials on the web but there were not clear one that helped me. I have installed npm, node.js and all pacakages I'm using for my app and cloned my app from git repo. Tried to run it using

nodejs server.js

where "server.js" my app server, it crashes because my mongoDB. How do I properly setup mongoDB and node.js app. Thanks.

Upvotes: 0

Views: 97

Answers (1)

Jorge Aranda
Jorge Aranda

Reputation: 2080

Digital Ocean's tutorials are pretty good:

How to install MongoDB on Ubuntu

How to set up Node on Ubuntu

Upvotes: 1

Related Questions