DEV Community

Cover image for A Simple Guide to Node/Express
JC Smiley
JC Smiley

Posted on

A Simple Guide to Node/Express

A Simple Guide to Node/Express

This is a stupidly simple short guide full of pictures to create and start a Node web service with an Express API. This is the first article in a series using Node, Express, MongoDB, and React to teach the process of creating a simple full stack application.

First, I'm going to show the complete file. I will break down each line to the best of my ability.

Copy of the finished file

FYI, you need to have Node installed on your computer. Here is a link on how to install: https://www.guru99.com/download-install-node-js.html. If you are wondering what is Node, the short answer is it's a run-time environment that allow developers to write server side code in JavaScript. Yeah, JavaScript rules the world!!!

Now let's begin:

Step 1. Set up a new npm package

Inside of command prompt, go to the folder you will be building the app in. Type the command, "npm init". You will be asked a series of questions. You can push the "enter" key to answer all the questions and "yes" to the last one.
This process creates a package.json file.

copy of package.json file


Step 2. Install Express

Inside of command prompt, type the command "npm install express". This will install the "Express" framework used to create an API on Node.

show the command to install express


Step 3. Create an "app.js" file to use Express

Finally, time to code. Create an "app.js" file in the same folder containing the package.json file. In the "app.js" file, write:

Basic commands to create the express object

Line 1 is the standard way to import a module into the application. AKA, allows you to use that software. Line 2 is creating an Express object or application in a variable called "app".


Step 4. Setup a listening port variable

Express commands to create a port

Line 3 is setting up a port for the server to listen for API calls. Ignore the "process.env.PORT" section, this is use set the port to an environment variable. The important part is the "3000". This allows you to view the app at http://localhost:3000/ when we are finished.


Step 5. Create an API call

Express API call to send text

Let's quickly break down lines 5–7. This is an API call used by a client to ask the server for a resource. Line 5 states that if a client asks for the root directory of this service, a request and response objects is created. The request is from the client to convey additional information to the server like a query or id. The response is from the server to the client to return the requested information/resource. Line 6 is the response from the server sending text back to the client.


Step 6. Using the port variable to listen for API calls

Express commands to listen on the port for API calls

Quick break-down of lines 9–11, on line 9 the Express application ("app") is listening on the port for incoming HTTP requests (aka, API calls). Line 10 isn't really needed but during development it helps to know if something works.


Step 7. DONE, let's test drive this bad baby

Inside of command prompt, type "node app.js". You should see the console.log statement from line 10 in the command prompt letting you know it works. Now in your browser, type http://localhost:3000/. You will see some magic that you created.

Picture showing a working site

You can follow my journey doing #100DaysOfCode on Twitter at JCSmiley4 or connect with me on LinkedIn at JC Smiley Jr.. As always, let' have fun and do lots of victory dancing.
Alt Text

Top comments (0)