- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js Express Framework
Express is a fast and minimal web framework for Node.js, designed to simplify the process of building web applications and APIs. It provides robust features for routing, middleware integration, and handling HTTP requests, making it the go-to framework for building server-side applications in Node.js.
Key Features of Express Framework
- Simplifies server setup and request handling.
- Provides a robust routing mechanism for defining application endpoints.
- Supports middleware for custom request and response processing.
- Offers seamless integration with databases and template engines.
Installing Express
Initialize a Node.js project:
npm init -y
Install Express:
npm install express
Creating a Basic Express Server
Code Example
Create server.js
:
const express = require('express');
const app = express();
// Define a simple route
app.get('/', (req, res) => {
res.send('Hello, Express!');
});
// Start the server
const PORT = 3000;
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});
Run the server:
node server.js
Visit http://localhost:3000
in your browser to see the message.
Adding Middleware
Middleware functions process requests and responses.
// Middleware to log requests
app.use((req, res, next) => {
console.log(`${req.method} ${req.url}`);
next();
});
app.get('/', (req, res) => {
res.send('Middleware Example');
});
Routing in Express
Define multiple routes for different endpoints.
app.get('/about', (req, res) => {
res.send('About Page');
});
app.post('/submit', (req, res) => {
res.send('Form Submitted');
});
Summary
Express is a powerful framework that simplifies web application development in Node.js. With its easy-to-use routing, middleware support, and extensibility, developers can quickly build robust and scalable server-side applications. It remains one of the most popular choices for Node.js developers worldwide.