7 Star 197 Fork 253

Java3y / austin-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
server.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
Java3y 提交于 2023-04-10 21:25 . 依赖下载至本地,不再依赖cdn
const express = require('express');
const http = require('http');
const path = require('path');
const reload = require('reload');
const bodyParser = require('body-parser');
const logger = require('morgan');
const app = express();
app.set('port', process.env.PORT || 3000);
app.use(logger('dev'));
app.use(bodyParser.json()); // Parses json, multi-part (file), url-encoded
app.use('/public', express.static('public'));
app.use('/pages', express.static('pages'));
app.use('/sdk', express.static('sdk'));
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
const server = http.createServer(app);
// Reload code here
reload(app)
.then(function (reloadReturned) {
// reloadReturned is documented in the returns API in the README
// Reload started, start web server
server.listen(app.get('port'), function () {
console.log(
'Web server listening on port http://localhost:' + app.get('port')
);
});
})
.catch(function (err) {
console.error(
'Reload could not start, could not start server/sample app',
err
);
});
HTML
1
https://gitee.com/zhongfucheng/austin-admin.git
git@gitee.com:zhongfucheng/austin-admin.git
zhongfucheng
austin-admin
austin-admin
master

搜索帮助