1 Star 0 Fork 8

terrydash/create-react-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.server.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
向葵般執著 提交于 2018-07-30 08:02 . Update support PWA
const Koa = require('koa')
const Router = require('koa-router')
const staticServer = require('koa-static')
const app = new Koa()
const router = new Router()
const server = require('http').Server(app.callback())
const path = require('path')
const fs = require('fs')
// 静态模板
app.use(staticServer(__dirname+'/build'))
// 广告(假数据模拟),上线替换真实的数据
var homeAdData = require('./mock/home/ad.js')
router.get('/api/ad', function(ctx, next){
console.log('广告(假数据模拟)')
ctx.body = homeAdData
})
router.get("/service-worker.js", (req, res) => {
ctx.response.type = 'text/javascript'
ctx.response.body = fs.createReadStream(path.resolve('build/service-worker.js'))
});
// 所有的 koa 路由全部交给 react router
router.get('*',(ctx, next) => {
ctx.response.type = 'text/html'
ctx.response.body = fs.createReadStream(path.resolve('build/index.html'))
});
app.use(router.routes())
// 开始服务并生成路由
server.listen(8081,function(){
console.log('Node app start at port 8081')
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/terrydash/create-react-app.git
git@gitee.com:terrydash/create-react-app.git
terrydash
create-react-app
create-react-app
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385