Skip to content
kaven276 edited this page Jan 12, 2016 · 3 revisions

Welcome to the noradle-scgi wiki!

模拟 http module

scgi.createServer(function(req,res){...})

request 包含

  • method
  • url
  • headers
  • setEncoding()
  • on.data
  • on.end

response 包含

  • setHeader()
  • write()
  • end()

这样的好处就是,可以完全复用 noradle-http 的架构,用于 WSGI 接入

Clone this wiki locally