View on GitHub

NodeJS Notes

Compilation of NodeJS Notes

How To Deploy A NodeJS Application On AWS EC2 Server

Visitors

Prerequisite

Instance Type: Amazon Linux 2 AMI 2.0.20200207.1 x8664 HVM (_Free Tier Eligible)

Step 1: Install NodeJS

  1. Connect to your Linux instance
  2. Install node version manager (nvm) by typing the following at the command line.

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
    
  3. Activate nvm by typing the following at the command line.

    . ~/.nvm/nvm.sh
    
  4. Use nvm to install the latest version of Node.js by typing the following at the command line.

    nvm install node
    
  5. Test that Node.js is installed and running correctly by typing the following at the command line.

    node -e "console.log('Running Node.js ' + process.version)"
    

    OR

    node -v
    

    Both of which will show you node version

Step 2: Setup Demo Server

  1. Make a folder

    mkdir server
    
  2. Create a demo server code

    cat >> index.js << EOF
    var app = require('express')();
    console.log("Starting the server!");
    var sampleJson = {
        "status": 200,
        "message": "Aloha!"
    }
    app.get('', function (req, res) {
        console.log("Processing Request")
        res.type('application/json');
        res.send(sampleJson);
    });
    console.log("Listening on port: 9000")
    app.listen(9000);
    EOF
    

    Feel free to modify the code

  3. Install Express

    npm install express
    

Step 3: Run the Server

Now You have two option for running the code

Debug

Reference

Visitors