1.2.0 • Published 5 years ago

tudou v1.2.0

Weekly downloads
9
License
-
Repository
-
Last release
5 years ago

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