使用 Express 实现一个简单的 SPA 静态资源服务器

Posted 记录下自己走过前端的坑~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 Express 实现一个简单的 SPA 静态资源服务器相关的知识,希望对你有一定的参考价值。

背景

限制 SPA 应用已经成为主流,在项目开发阶段产品经理和后端开发同学经常要查看前端页面,下面就是我们团队常用的使用 express 搭建的 SPA 静态资源服务器方案。

为 SPA 应用添加入口(index.html)的 sendFile

当 SPA 应用开启 html5 mode 的情况下,指定 url 下(<base href="/">的情况为/)的全部请求都会访问入口文件(一般情况下是 index.html),然后 SPA 应用会根据 url 再去决定访问的实际页面。
所以我们需要为全部路径添加 sendFile 来发送 index.html 文件内的内容,并将其缓存实际设为0,代码如下:

1
2
3
app.use("/**", function (req, res) {
res.sendfile(staticPath+"/index.html", {maxAge: 0});
});

 

为 SPA 应用添加其他静态资源

由于 Express 中间件的特性,在 index.html 的 sendFile 之前我们需要将其他静态资源进行处理,具体代码如下:

1
2
3
const options = process.env.env == ‘prod‘ ? {maxAge: ‘3d‘} : {maxAge: ‘1m‘};
app.use(express.static(path.join(__dirname, staticPath), options));
});

 

SPA 静态资源服务器的全部代码

下面是 SPA 静态资源服务器 app.js 的全部代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const express = require(‘express‘);
const path = require(‘path‘);
const http = require(‘http‘);

const app = express();
const staticPath=process.env.static ||‘dist‘;
const port=process.env.port || 3000;

const options = process.env.env == ‘prod‘ ? {maxAge: ‘3d‘} : {maxAge: ‘1m‘};
app.use(express.static(path.join(__dirname, staticPath), options));

app.use("/**", function (req, res) {
res.sendfile(staticPath+"/index.html", {maxAge: 0});
});

const server = http.createServer(app);
server.listen(port);

console.log(`env:${process.env.env}`);
console.log(`path:${staticPath}`);
console.log(`port:${port}`);

 

执行以下命令即可指定 SPA 项目路径和端口号启动服务器了

1
export static=www&&export port=8101 && export env=prod && node ./app.js

以上是关于使用 Express 实现一个简单的 SPA 静态资源服务器的主要内容,如果未能解决你的问题,请参考以下文章

express框架实现承载静态页面的能力

使用 express 提供静态文件的最简单方法是啥?

如何创建服务于 Vue.js SPA 的 Node.js Express 应用程序?

React SPA with Express Backend API - 将 JWT 存储在本地存储中并限制 API 仅访问 SPA 的 Web 服务器 IP

详解express搭建http服务,通过路由和中间件获取静态文件和动态数据的实现原理

如何验证从反应 SPA 中的 keycloak 检索的 nodejs express api 的访问令牌?