码迷,mamicode.com
首页 > 其他好文 > 详细

node 单页应用服务 常用工具

时间:2021-06-16 18:10:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:html   name   exp   检查   fun   stat   list   命令   text   

快速搭建一个node服务,可以用于检查自己的单页应用是否有问题

app.js

var exppress = require("express");
const fs = require("fs");
var app = exppress();
app.use(exppress.static("dist"));
const port = 3000;
app.listen(port, () => {
  console.log(`服务已经启动 at http://localhost:${port}`);
});
//服务端端路由
app.use(function (req, res, next) {
  //每次返回index.html
  fs.readFile(__dirname + "/dist/index.html", function (err, data) {
    if (err) {
      console.log(err);
      res.send("后台错误");
    } else {
      res.writeHead(200, {
        "Content-type": "text/html",
        Connection: "keep-alive",
      });
      res.end(data);
    }
  });
});

每次替换dist文件即可,启动命令 node app.js

node 单页应用服务 常用工具

标签:html   name   exp   检查   fun   stat   list   命令   text   

原文地址:https://www.cnblogs.com/heihei-haha/p/14888684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!