Small Bree based job runner + gui
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }