tudou
v1.2.0
Published
## Install
Downloads
1
Readme
ssr-cli
Install
$ npm i tudou -g
Usage
- start csr and ssr
$ ssr start
- build
$ ssr build
build 命令将根据 yaml 配置文件中的路由进行打包。支持多路由配置。
'use strict'
const path = require('path')
const App = require('faas-runtime')('egg', async (ctx, next) => {
// add your runtime middware here
ctx.ssrRender = require('../../index')
app.use(require('koa-static')(path.join(__dirname, './app/render/dist')))
await next()
})
const app = new App('./app')
app.listen(3000)
$ open http://localhost:3000/xxx