Subscribe
Creating a RESTful API with Node.js and Express.js
5 mins read

By: vishwesh

Creating a RESTful API with Node.js and Express.js

Are you interested in building a web application that allows other developers to communicate with it? If so, then you need to build a RESTful API. In this article, we will discuss how to create a RESTful API using Node.js and Express.js.

What is a RESTful API?

A RESTful API is a type of web API that uses HTTP requests to GET, PUT, POST, and DELETE data. It is a stateless architecture that enables the client and server to communicate independently. RESTful APIs are designed to be easy to use, scalable, and reliable.

Why use Node.js and Express.js for building a RESTful API?

Node.js is an open-source server-side JavaScript runtime that allows developers to run JavaScript on the server. It is built on Chrome's V8 JavaScript engine and is designed to be fast and scalable. Express.js is a popular web framework for Node.js that provides a simple and flexible way to build web applications. It provides a set of robust features that can be used to build a RESTful API.

Prerequisites

Before we start building the RESTful API, make sure you have the following prerequisites:

  • Node.js and npm installed on your machine
  • Basic knowledge of JavaScript
  • Basic knowledge of HTTP requests and RESTful APIs

Getting started

Let's start by creating a new Node.js project. Open your terminal and navigate to the folder where you want to create the project. Run the following command to create a new Node.js project:

npm init -y

This will create a new package.json file that will contain all the necessary dependencies for our project.

Next, install Express.js by running the following command in your terminal:

npm install express

Creating the server

Now that we have installed Express.js, let's create a server to handle HTTP requests. Create a new file called server.js in the root directory of your project and add the following code:

const express = require('express');
const app = express();

const port = process.env.PORT || 3000;

app.listen(port, () => {
  console.log(`Server is running on port ${port}`);
});

This code imports the express module and creates an instance of the express application. It then defines a port number and starts the server on that port.

Creating the API routes

Now that we have created the server, let's create some API routes to handle HTTP requests. We will create a simple API that will allow us to create, read, update, and delete a list of users.

Creating the GET route

Let's start by creating the GET route to retrieve all the users. Add the following code to server.js:

const users = [
  { id: 1, name: 'John Doe' },
  { id: 2, name: 'Jane Doe' },
];

app.get('/api/users', (req, res) => {
  res.send(users);
});

This code defines an array of users and creates a GET route for the /api/users endpoint. When the client makes a GET request to this endpoint, the server will send the users array as the response.

Creating the POST route

Let's now create the POST route to add a new user. Add the following code to server.js:

app.use(express.json());

app.post('/api/users', (req, res) => {
  const user = {
    id: users.length + 1,
    name: req.body.name,
  };
  users.push(user);
  res.send(user);
});

This code adds middleware to parse incoming JSON requests. It then creates a POST route for the /api/users endpoint. When the client makes a POST request to this endpoint, the server will create a new user object with an incremented ID and the name provided in the request body. The new user will be added to the users array, and the server will send the new user object as the response.

Creating the PUT route

Let's now create the PUT route to update a user's name. Add the following code to server.js:

app.put('/api/users/:id', (req, res) => {
  const user = users.find(u => u.id === parseInt(req.params.id));
  if (!user) return res.status(404).send('User not found');

  user.name = req.body.name;
  res.send(user);
});

This code creates a PUT route for the /api/users/:id endpoint. When the client makes a PUT request to this endpoint, the server will find the user with the specified ID in the users array. If the user is found, the server will update the user's name with the name provided in the request body and send the updated user object as the response. If the user is not found, the server will send a 404 error response.

Creating the DELETE route

Finally, let's create the DELETE route to delete a user. Add the following code to server.js:

app.delete('/api/users/:id', (req, res) => {
  const user = users.find(u => u.id === parseInt(req.params.id));
  if (!user) return res.status(404).send('User not found');

  const index = users.indexOf(user);
  users.splice(index, 1);
  res.send(user);
});

This code creates a DELETE route for the /api/users/:id endpoint. When the client makes a DELETE request to this endpoint, the server will find the user with the specified ID in the users array. If the user is found, the server will remove the user from the users array and send the deleted user object as the response. If the user is not found, the server will send a 404 error response.

Testing the API

Now that we have created the API routes, let's test the API using a tool like Postman or cURL. Here are some example requests you can make:

GET request

GET http://localhost:3000/api/users

This request will retrieve all the users in the users array.

POST request

POST http://localhost:3000/api/users
Content-Type: application/json

{
  "name": "Bob Smith"
}

This request will add a new user with the name "Bob Smith" to the users array.

PUT request

PUT http://localhost:3000/api/users/1
Content-Type: application/json

{
  "name": "John Smith"
}

This request will update the name of the user with ID 1 to "John Smith".

DELETE request

DELETE http://localhost:3000/api/users/2

This request will delete the user with ID 2 from the users array.

Conclusion

In this article, we have discussed how to create a RESTful API using Node.js and Express.js. We started by creating a server to handle HTTP requests and then created API routes to handle GET, POST, PUT, and DELETE requests. We also tested the API using a tool like Postman or cURL. We hope this article has helped you get started with building your own RESTful API!

Recent posts

Don't miss the latest trends

    Popular Posts

    Popular Categories