Step 3: Building the server
Last updated
Last updated
The first thing we need to do is build our server. You will always need to build a server when writing back-end code. A server can be built in pure Node.js, but Express makes things easier for us.
Servers are computer programs that receive requests from other programs, the clients and send back a response e.g share data, information or hardware and software resources.
A server is a computer program. Its job is to send and receive data.
Let's take a website for example. A website is just a collection of HTML and CSS files, images, maybe some javascript files. When you type a website address in your browser's address bar, the browser (client) sends a request to the server that lives at that address. The browser asks the server to give it the files it needs to display the website properly.
server.js
fileLet's build our server! Before we do anything, let's create a new file called server.js
. This is where all our server code is going to live.
require
the Express libraryWe already installed Express in Step 2, but we need to make sure it is included in this file specifically so we can make use of its methods. In Node.js, when you want to access the functionality of a library or module in another file, you require
it.
To import Express, write the following inside server.js
:
To initialise our server, we just need to call the express()
function. This will create an Express application for us to work with.
Add the second line of code to your server.js
file:
One more step left, we need to set a port for our server to listen to. Think of a port as a door number; any requests that come to the server will come via that door. Setting a port will allow us to find where our server is running.
We use the app.listen
method to do this. This method takes two arguments: a port and a callback function telling it what to do once the server is running. Need clarification? Read more about the app.listen
method in the Express documentation.
We're going to run our server on port 3000
, and callconsole.log
in our callback function. Update your server.js
file, calling the app.listen
method:
You've built your server, but it isn't running yet. We need to run a command in the terminal to do this. We are going to use the node
keyword to run the server file.
Type the following command in your terminal:
If you see this, congratulations! You have built yourself a server!