Reputation: 109
I'm trying to create a simple Node js server on Amazon AWS (S3 & Cloudfront). Here the step that I followed :
Everything is working well, but what would be the next step to install an Node Js server and run it ?
Any help would be appreciated Thanks
Upvotes: 0
Views: 1940
Reputation: 180
S3 is not a server, it's storage for static files.
You need to setup a EC2 and install your node server into it.
If you just want to serve a static JS lib for your clients, then you can use S3 bucket and Cloudfront.
https://aws.amazon.com/cloudfront/webinars/
Upvotes: 1