REST API CRUD Operations Using ExpressJS
Last Updated :
19 Feb, 2025
In modern web development, REST APIs enable seamless communication between different applications. Whether it’s a web app fetching user data or a mobile app updating profile information, REST APIs provide these interactions using standard HTTP methods.
What is a REST API?
A REST API (Representational State Transfer Application Programming Interface) is an architectural style that defines a set of constraints for creating web services. It allows different software systems to communicate over HTTP, using standard HTTP methods (GET, POST, PUT, DELETE).
- Create: Add new resources to the system (HTTP POST)
- Read: Retrieve items (HTTP GET)
- Update: Modify existing items (HTTP PUT/PATCH)
- Delete: Remove items (HTTP DELETE)
HTTP Methods
In HTTP, various methods define the desired action to be performed on a resource identified by a URL. Here's a concise overview of some common HTTP methods:
GET:
- Meaning: The GET method is used to request data from a specified resource.
- Purpose: It is used to retrieve information from the server without making any changes to the server's data. GET requests should be idempotent, meaning multiple identical GET requests should have the same effect as a single request.
- Example: When you enter a URL in your web browser's address bar and press Enter, a GET request is sent to the server to retrieve the web page's content.
POST:
- Meaning: The POST method is used to submit data to be processed to a specified resource.
- Purpose: It is typically used for creating new resources on the server or updating existing resources. POST requests may result in changes to the server's data.
- Example: When you submit a form on a web page, the data entered in the form fields is sent to the server using a POST request.
PUT:
- Meaning: The PUT method is used to update a resource or create a new resource if it does not exist at a specified URL.
- Purpose: It is used for updating or replacing the entire resource at the given URL with the new data provided in the request. PUT requests are idempotent.
- Example: An application might use a PUT request to update a user's profile information.
PATCH:
- Meaning: The PATCH method is used to apply partial modifications to a resource.
- Purpose: It is used when you want to update specific fields or properties of a resource without affecting the entire resource. It is often used for making partial updates to existing data.
- Example: You might use a PATCH request to change the description of a product in an e-commerce system without altering other product details.
DELETE:
- Meaning: The DELETE method is used to request the removal of a resource at a specified URL.
- Purpose: It is used to delete or remove a resource from the server. After a successful DELETE request, the resource should no longer exist.
- Example: When you click a "Delete" button in a web application to remove a post or a file, a DELETE request is sent to the server.
They are an essential part of the RESTful architecture, which is commonly used for designing web APIs and web services.
Implementing the CRUD operations
Install Express
npm install express
We’ll also install body-parser to parse incoming request bodies (for POST and PUT requests):
npm install body-parser
Setting Up the Basic Server
In the project folder, create a file called app.js. This file will contain the code to set up the basic Express server.
JavaScript
// app.js
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
let items = [
{ id: 1, name: 'Item 1' },
{ id: 2, name: 'Item 2' }
];
app.get('/', (req, res) => {
res.send('Welcome to the REST API!');
});
app.listen(3000, () => {
console.log('Server running on http://localhost:3000');
});
The express server has been created and it is running on the
http://localhost:3000/
In the above example
- This code creates a server using Express and allows it to read JSON data in requests.
- It uses a simple list of items to simulate a database.
- app.get('/', (req, res) => { ... }); defines a route that listens for GET requests on the root URL (/).
- When a client makes a GET request to the root URL (http://localhost:3000/), the callback function inside app.get is triggered.
- The server responds with the message 'Welcome to the REST API!' using res.send().
Now, we will perform the CRUD operations.
POST(Create)
It can be used for adding the new item in the database.
JavaScript
// Create (POST): Add a new item
app.post('/items', (req, res) => {
const { name } = req.body;
const newItem = { id: items.length + 1, name };
items.push(newItem);
res.status(201).json(newItem);
});
POST RequestThe new item name: New Item has been added in the database.
GET (Read)
We need two routes: One to retrieve all items, and another to retrieve an individual item by its ID.
JavaScript
// Read (GET): Get all items
app.get('/items', (req, res) => {
res.json(items);
});
// Read (GET): Get a single item by ID
app.get('/items/:id', (req, res) => {
const item = items.find(i => i.id === parseInt(req.params.id));
if (!item) return res.status(404).send('Item not found');
res.json(item);
});
List of all the items we are getting by using
http://localhost:3000/items
Output
GET All RequestIf we want to get the specific element
http://localhost:3000/items/2
Output:
GET Specific RequestUpdate (PUT/PATCH)
We’ll add a route to update an item’s name using a PUT request.
JavaScript
// Update (PUT): Update an item by ID
app.put('/items/:id', (req, res) => {
const item = items.find(i => i.id === parseInt(req.params.id));
if (!item) return res.status(404).send('Item not found');
item.name = req.body.name; // Update the item's name
res.json(item);
});
Output
PUT RequestDELETE(Delete)
We will add a route to delete an item using a DELETE request.
JavaScript
// Delete (DELETE): Delete an item by ID
app.delete('/items/:id', (req, res) => {
const itemIndex = items.findIndex(i => i.id === parseInt(req.params.id));
if (itemIndex === -1) return res.status(404).send('Item not found');
const deletedItem = items.splice(itemIndex, 1);
res.json(deletedItem);
});
In this example I am trying to delete the item which is not present. So it is showing the 404 not found.
Deleting An ItemFull Working Example
Here’s the full code for the Express CRUD API:
JavaScript
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
let items = [
{ id: 1, name: 'Item 1' },
{ id: 2, name: 'Item 2' }
];
// Create (POST): Add a new item
app.post('/items', (req, res) => {
const { name } = req.body;
const newItem = { id: items.length + 1, name };
items.push(newItem);
res.status(201).json(newItem);
});
// Read (GET): Get all items
app.get('/items', (req, res) => {
res.json(items);
});
// Read (GET): Get a single item by ID
app.get('/items/:id', (req, res) => {
const item = items.find(i => i.id === parseInt(req.params.id));
if (!item) return res.status(404).send('Item not found');
res.json(item);
});
// Update (PUT): Update an item by ID
app.put('/items/:id', (req, res) => {
const item = items.find(i => i.id === parseInt(req.params.id));
if (!item) return res.status(404).send('Item not found');
item.name = req.body.name;
res.json(item);
});
// Delete (DELETE): Delete an item by ID
app.delete('/items/:id', (req, res) => {
const itemIndex = items.findIndex(i => i.id === parseInt(req.params.id));
if (itemIndex === -1) return res.status(404).send('Item not found');
const deletedItem = items.splice(itemIndex, 1);
res.json(deletedItem);
});
// Start the server
app.listen(3000, () => {
console.log('Server running on http://localhost:3000');
});
Best Practices for Creating a REST API Using Express.js
- Use Proper HTTP Methods: Follow RESTful conventions by using GET for retrieving data, POST for creating data, PUT/PATCH for updating data, and DELETE for removing data.
- Implement Middleware: Use middleware like express.json() to parse incoming JSON requests and morgan for logging API requests.
- Validate Input Data: Ensure data integrity by using validation libraries like Joi or express-validator before processing requests.
- Use Meaningful Route Names: Design clear, resource-oriented URLs (e.g., /students/:id instead of /getStudent).
Similar Reads
Node.js Tutorial Node.js is a powerful, open-source, and cross-platform JavaScript runtime environment built on Chrome's V8 engine. It allows you to run JavaScript code outside the browser, making it ideal for building scalable server-side and networking applications.JavaScript was mainly used for frontend developme
4 min read
Introduction & Installation
NodeJS IntroductionNodeJS is a runtime environment for executing JavaScript outside the browser, built on the V8 JavaScript engine. It enables server-side development, supports asynchronous, event-driven programming, and efficiently handles scalable network applications. NodeJS is single-threaded, utilizing an event l
5 min read
Node.js Roadmap: A Complete GuideNode.js has become one of the most popular technologies for building modern web applications. It allows developers to use JavaScript on the server side, making it easy to create fast, scalable, and efficient applications. Whether you want to build APIs, real-time applications, or full-stack web apps
6 min read
How to Install Node.js on LinuxInstalling Node.js on a Linux-based operating system can vary slightly depending on your distribution. This guide will walk you through various methods to install Node.js and npm (Node Package Manager) on Linux, whether using Ubuntu, Debian, or other distributions.PrerequisitesA Linux System: such a
6 min read
How to Install Node.js on WindowsInstalling Node.js on Windows is a straightforward process, but it's essential to follow the right steps to ensure smooth setup and proper functioning of Node Package Manager (NPM), which is crucial for managing dependencies and packages. This guide will walk you through the official site, NVM, Wind
6 min read
How to Install NodeJS on MacOSNode.js is a popular JavaScript runtime used for building server-side applications. Itâs cross-platform and works seamlessly on macOS, Windows, and Linux systems. In this article, we'll guide you through the process of installing Node.js on your macOS system.What is Node.jsNode.js is an open-source,
6 min read
Node.js vs Browser - Top Differences That Every Developer Should KnowNode.js and Web browsers are two different but interrelated technologies in web development. JavaScript is executed in both the environment, node.js, and browser but for different use cases. Since JavaScript is the common Programming language in both, it is a huge advantage for developers to code bo
6 min read
NodeJS REPL (READ, EVAL, PRINT, LOOP)NodeJS REPL (Read-Eval-Print Loop) is an interactive shell that allows you to execute JavaScript code line-by-line and see immediate results. This tool is extremely useful for quick testing, debugging, and learning, providing a sandbox where you can experiment with JavaScript code in a NodeJS enviro
5 min read
Explain V8 engine in Node.jsThe V8 engine is one of the core components of Node.js, and understanding its role and how it works can significantly improve your understanding of how Node.js executes JavaScript code. In this article, we will discuss the V8 engineâs importance and its working in the context of Node.js.What is a V8
7 min read
Node.js Web Application ArchitectureNode.js is a JavaScript-based platform mainly used to create I/O-intensive web applications such as chat apps, multimedia streaming sites, etc. It is built on Google Chromeâs V8 JavaScript engine. Web ApplicationsA web application is software that runs on a server and is rendered by a client browser
3 min read
NodeJS Event LoopThe event loop in Node.js is a mechanism that allows asynchronous tasks to be handled efficiently without blocking the execution of other operations. It:Executes JavaScript synchronously first and then processes asynchronous operations.Delegates heavy tasks like I/O operations, timers, and network r
5 min read
Node.js Modules , Buffer & Streams
NodeJS ModulesIn NodeJS, modules play an important role in organizing, structuring, and reusing code efficiently. A module is a self-contained block of code that can be exported and imported into different parts of an application. This modular approach helps developers manage large projects, making them more scal
6 min read
What are Buffers in Node.js ?Buffers are an essential concept in Node.js, especially when working with binary data streams such as files, network protocols, or image processing. Unlike JavaScript, which is typically used to handle text-based data, Node.js provides buffers to manage raw binary data. This article delves into what
4 min read
Node.js StreamsNode.js streams are a key part of handling I/O operations efficiently. They provide a way to read or write data continuously, allowing for efficient data processing, manipulation, and transfer.\Node.js StreamsThe stream module in Node.js provides an abstraction for working with streaming data. Strea
4 min read
Node.js Asynchronous Programming
Node.js NPM
NodeJS NPMNPM (Node Package Manager) is a package manager for NodeJS modules. It helps developers manage project dependencies, scripts, and third-party libraries. By installing NodeJS on your system, NPM is automatically installed, and ready to use.It is primarily used to manage packages or modulesâthese are
6 min read
Steps to Create and Publish NPM packagesIn this article, we will learn how to develop and publish your own npm package (also called an NPM module). There are many benefits of NPM packages, some of them are listed below: Reusable codeManaging code (using versioning)Sharing code The life-cycle of an npm package takes place like below: Modu
7 min read
Introduction to NPM scriptsNPM is a Node Package Manager. It is the world's largest Software Registry. This registry contains over 800,000 code packages. Many Open-source developers use npm to share software. Many organizations also use npm to manage private development. "npm scripts" are the entries in the scripts field of t
2 min read
Node.js package.jsonThe package.json file is the heart of Node.js system. It is the manifest file of any Node.js project and contains the metadata of the project. The package.json file is the essential part to understand, learn and work with the Node.js. It is the first step to learn about development in Node.js.What d
4 min read
What is package-lock.json ?package-lock.json is a file that is generated when we try to install the node. It is generated by the Node Package Manager(npm). package-lock.json will ensure that the same versions of packages are installed. It contains the name, dependencies, and locked version of the project. It will check that s
3 min read
Node.js Deployments & Communication
Node DebuggingDebugging is an essential part of software development that helps developers identify and fix errors. This ensures that the application runs smoothly without causing errors. NodeJS is the JavaScript runtime environment that provides various debugging tools for troubleshooting the application.What is
3 min read
How to Perform Testing in Node.js ?Testing is a method to check whether the functionality of an application is the same as expected or not. It helps to ensure that the output is the same as the required output. How Testing can be done in Node.js? There are various methods by which tasting can be done in Node.js, but one of the simple
2 min read
Unit Testing of Node.js ApplicationNode.js is a widely used javascript library based on Chrome's V8 JavaScript engine for developing server-side applications in web development. Unit Testing is a software testing method where individual units/components are tested in isolation. A unit can be described as the smallest testable part of
5 min read
NODE_ENV Variables and How to Use Them ?Introduction: NODE_ENV variables are environment variables that are made popularized by the express framework. The value of this type of variable can be set dynamically depending on the environment(i.e., development/production) the program is running on. The NODE_ENV works like a flag which indicate
2 min read
Difference Between Development and Production in Node.jsIn this article, we will explore the key differences between development and production environments in Node.js. Understanding these differences is crucial for deploying and managing Node.js applications effectively. IntroductionNode.js applications can behave differently depending on whether they a
3 min read
Best Security Practices in Node.jsThe security of an application is extremely important when we build a highly scalable and big project. So in this article, we are going to discuss some of the best practices that we need to follow in Node.js projects so that there are no security issues at a later point of time. In this article, we
4 min read
Deploying Node.js ApplicationsDeploying a NodeJS application can be a smooth process with the right tools and strategies. This article will guide you through the basics of deploying NodeJS applications.To show how to deploy a NodeJS app, we are first going to create a sample application for a better understanding of the process.
5 min read
How to Build a Microservices Architecture with NodeJSMicroservices architecture allows us to break down complex applications into smaller, independently deployable services. Node.js, with its non-blocking I/O and event-driven nature, is an excellent choice for building microservices. How to Build a Microservices Architecture with NodeJS?Microservices
3 min read
Node.js with WebAssemblyWebAssembly, often abbreviated as Wasm, is a cutting-edge technology that offers a high-performance assembly-like language capable of being compiled from various programming languages such as C/C++, Rust, and AssemblyScript. This technology is widely supported by major browsers including Chrome, Fir
3 min read
Resources & Tools
Node.js Web ServerA NodeJS web server is a server built using NodeJS to handle HTTP requests and responses. Unlike traditional web servers like Apache or Nginx, which are primarily designed to give static content, NodeJS web servers can handle both static and dynamic content while supporting real-time communication.
6 min read
Node Exercises, Practice Questions and SolutionsNode Exercise: Explore interactive quizzes, track progress, and enhance coding skills with our engaging portal. Ideal for beginners and experienced developers, Level up your Node proficiency at your own pace. Start coding now! #content-iframe { width: 100%; height: 500px;} @media (max-width: 768px)
4 min read
Node.js ProjectsNode.js is one of the most popular JavaScript runtime environments widely used in the software industry for projects in different domains like web applications, real-time chat applications, RESTful APIs, microservices, and more due to its high performance, scalability, non-blocking I/O, and many oth
9 min read
NodeJS Interview Questions and AnswersNodeJS is one of the most popular runtime environments, known for its efficiency, scalability, and ability to handle asynchronous operations. It is built on Chromeâs V8 JavaScript engine for executing JavaScript code outside of a browser. It is extensively used by top companies such as LinkedIn, Net
15+ min read