Small Bree based job runner + gui
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

client.js 324B

123456789101112131415161718
  1. const template = 'index/index'
  2. const action = 'client'
  3. const state = {
  4. title: 'Custom Title',
  5. message: 'hallo world'
  6. }
  7. /**
  8. * Corresponds with templates/index/index.pug
  9. */
  10. module.exports = {
  11. method: 'GET',
  12. path: `/${action}`,
  13. options: {
  14. handler: (request, h) => h.view(template, state)
  15. }
  16. }