搜索
首页web前端js教程Understanding Middleware in Express.js with Node.js - Part 9

Understanding Middleware in Express.js with Node.js - Part 9

Understanding Middleware in Express.js: The Easy Way

Middleware in Express.js might sound a bit technical, but once you get the hang of it, it's pretty straightforward. It's like a pit stop in a race—requests come in, and before they reach the finish line (your route handler), they make some stops at different points to get modified, checked, or just logged.

In this article, we’ll break down what middleware is, how to use it, and show you some real-life examples. Let’s make this as simple and practical as possible!


So, What Exactly Is Middleware?

Imagine every request to your server is a car on a road trip. Middleware is like a series of checkpoints that each car has to pass through before it reaches its destination. At each checkpoint (middleware), something happens: maybe the car gets a wash, maybe it picks up some snacks, or maybe it's told to turn around and go home!

In coding terms, middleware is just a function that sits between the request and response. It can:

  • Run some code.
  • Change the request or response.
  • Stop the request from going any further.
  • Pass it on to the next middleware.

Here's a super basic example:

app.use((req, res, next) => {
  console.log('A request came in!');
  next(); // Pass the baton to the next middleware
});

Every time a request hits your server, it logs a message, then passes control to the next piece of middleware or route handler.


Built-in Middleware: Express’s Ready-to-Go Tools

Express comes with a few built-in middleware functions that make life easier. Here are a couple you’ll probably use all the time:

1- express.json(): This one helps you deal with incoming JSON data.

app.use(express.json());

2- express.static(): Want to serve static files like images or CSS? This middleware's got you covered.

app.use(express.static('public'));

3- express.urlencoded(): It helps to parse data sent through HTML forms.

app.use(express.urlencoded({ extended: true }));

Custom Middleware: Build Your Own

You can also create your own middleware to handle specific tasks like logging or checking if a user is logged in.

Example: Simple Logger

app.use((req, res, next) => {
  console.log(`Request Method: ${req.method}, URL: ${req.url}`);
  next();
});

This logs the HTTP method and URL every time a request hits your server. It’s great for tracking what’s happening with your app.

Example: Authentication Check

const checkAuth = (req, res, next) => {
  if (!req.headers.authorization) {
    return res.status(403).send('You shall not pass! (Unauthorized)');
  }
  next(); // Allow the request to continue if authorized
};

app.use(checkAuth);

Here, if a request doesn’t have an authorization header, it gets blocked with a “403 Forbidden” message. Otherwise, it gets passed along.


Using Third-Party Middleware

Don't feel like writing everything yourself? Good news: Express works with tons of third-party middleware that can handle tasks for you.

Example: morgan for Logging

morgan is a popular middleware for logging requests. To use it:

1- Install it:

npm install morgan

2- Add it to your app:

const morgan = require('morgan');
app.use(morgan('dev'));

Now, every time a request comes in, you’ll get a nice, formatted log in your terminal.

Example: cors for Cross-Origin Requests

cors middleware allows your app to handle requests from other domains (super useful when building APIs).

1- Install it:

npm install cors

2- Use it:

const cors = require('cors');
app.use(cors());

That’s it! Now your app can handle cross-origin requests without breaking a sweat.


Middleware for Specific Routes

You don’t always have to apply middleware to every route in your app. Sometimes, you only want it to run on specific ones.

app.get('/dashboard', checkAuth, (req, res) => {
  res.send('Welcome to the Dashboard');
});

Here, the checkAuth middleware only runs when someone tries to access the /dashboard route. If they’re not authorized, they don’t get in!


Handling Errors with Middleware

Sometimes things go wrong. That’s where error-handling middleware comes in handy. It looks a little different—it takes four arguments: err, req, res, and next.

app.use((err, req, res, next) => {
  console.error(err.stack);
  res.status(500).send('Something went wrong!');
});

This middleware catches errors and sends back a friendly "500 Internal Server Error" message.


Wrapping Up

Middleware is like the Swiss Army knife of Express.js. It helps you manage requests, handle errors, and add cool features like logging or authentication. Whether you’re using the built-in options, writing your own, or pulling in third-party tools, middleware keeps your app modular and manageable.

Thank you for reading, and happy coding! ?

以上是Understanding Middleware in Express.js with Node.js - Part 9的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
在JavaScript中替换字符串字符在JavaScript中替换字符串字符Mar 11, 2025 am 12:07 AM

JavaScript字符串替换方法详解及常见问题解答 本文将探讨两种在JavaScript中替换字符串字符的方法:在JavaScript代码内部替换和在网页HTML内部替换。 在JavaScript代码内部替换字符串 最直接的方法是使用replace()方法: str = str.replace("find","replace"); 该方法仅替换第一个匹配项。要替换所有匹配项,需使用正则表达式并添加全局标志g: str = str.replace(/fi

8令人惊叹的jQuery页面布局插件8令人惊叹的jQuery页面布局插件Mar 06, 2025 am 12:48 AM

利用轻松的网页布局:8个基本插件 jQuery大大简化了网页布局。 本文重点介绍了简化该过程的八个功能强大的JQuery插件,对于手动网站创建特别有用

构建您自己的Ajax Web应用程序构建您自己的Ajax Web应用程序Mar 09, 2025 am 12:11 AM

因此,在这里,您准备好了解所有称为Ajax的东西。但是,到底是什么? AJAX一词是指用于创建动态,交互式Web内容的一系列宽松的技术。 Ajax一词,最初由Jesse J创造

10个JQuery Fun and Games插件10个JQuery Fun and Games插件Mar 08, 2025 am 12:42 AM

10款趣味横生的jQuery游戏插件,让您的网站更具吸引力,提升用户粘性!虽然Flash仍然是开发休闲网页游戏的最佳软件,但jQuery也能创造出令人惊喜的效果,虽然无法与纯动作Flash游戏媲美,但在某些情况下,您也能在浏览器中获得意想不到的乐趣。 jQuery井字棋游戏 游戏编程的“Hello world”,现在有了jQuery版本。 源码 jQuery疯狂填词游戏 这是一个填空游戏,由于不知道单词的上下文,可能会产生一些古怪的结果。 源码 jQuery扫雷游戏

如何创建和发布自己的JavaScript库?如何创建和发布自己的JavaScript库?Mar 18, 2025 pm 03:12 PM

文章讨论了创建,发布和维护JavaScript库,专注于计划,开发,测试,文档和促销策略。

使用AJAX动态加载盒内容使用AJAX动态加载盒内容Mar 06, 2025 am 01:07 AM

本教程演示了创建通过Ajax加载的动态页面框,从而可以即时刷新,而无需全页重新加载。 它利用jQuery和JavaScript。将其视为自定义的Facebook式内容框加载程序。 关键概念: Ajax和JQuery

如何为JavaScript编写无曲奇会话库如何为JavaScript编写无曲奇会话库Mar 06, 2025 am 01:18 AM

此JavaScript库利用窗口。名称属性可以管理会话数据,而无需依赖cookie。 它为浏览器中存储和检索会话变量提供了强大的解决方案。 库提供了三种核心方法:会话

jQuery视差教程 - 动画标题背景jQuery视差教程 - 动画标题背景Mar 08, 2025 am 12:39 AM

本教程演示了如何使用jQuery创建迷人的视差背景效果。 我们将构建一个带有分层图像的标题横幅,从而创造出令人惊叹的视觉深度。 更新的插件可与JQuery 1.6.4及更高版本一起使用。 下载

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热工具

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

将Eclipse与SAP NetWeaver应用服务器集成。

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

MinGW - 适用于 Windows 的极简 GNU

MinGW - 适用于 Windows 的极简 GNU

这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

WebStorm Mac版

WebStorm Mac版

好用的JavaScript开发工具

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器