1 Star 0 Fork 0

闫炳雨/myapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 839 Bytes
一键复制 编辑 原始数据 按行查看 历史
闫炳雨 提交于 2023-08-31 08:49 . 添加git配置文件
const express = require("express");
const path = require("path");
const app = express();
const port = 2333;
const viewsDir = path.join(__dirname, "views");
app.use(express.static(path.join(__dirname, "/static"))); // 指定静态文件路径
app.get("/", (req, res) => res.redirect("/index")); // 路由重定向到
app.get("/index", (req, res) =>
res.sendFile(path.join(viewsDir, "index.html"))
);
app.get("/about", (req, res) =>
res.sendFile(path.join(viewsDir, "about.html"))
);
app.get("/recruit", (req, res) =>
res.sendFile(path.join(viewsDir, "recruit.html"))
);
// // POST method route
// app.post('/', function (req, res) {
// res.send('POST request to the homepage');
// });
app.get(/s/, function (req, res) {
res.send("/a/");
});
app.listen(port, () => {
console.log(`访问:http://192.168.0.61:${port}`);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaoyu-loves/myapp.git
[email protected]:xiaoyu-loves/myapp.git
xiaoyu-loves
myapp
myapp
master

搜索帮助