Test Repository
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
728 B

  1. /* globals module */
  2. /**
  3. * Template ExpressJS Middleware for uibuilder.
  4. *
  5. * NOTES & WARNINGS:
  6. * 1) This function is called EVERY TIME any web call is made to the URL defined by your uib instance.
  7. * So it should be kept short and efficient.
  8. * 2) Failing to either return or call `next()` will cause an ExpressJS error.
  9. * 3) An error in this function will probably cause Node-RED to fail to start at all.
  10. * 4) You have to restart Node-RED if you change this file.
  11. *
  12. * Allows custom processing for authentication, session management, custom logging, etc.
  13. */
  14. // module.exports = function(req,res,next) {
  15. // console.log('[uibuilder:uibMiddleware] Custom ExpressJS middleware called.')
  16. // next()
  17. // }