You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module is a drop-in replacement for node's http module (server only). It can be used to build FastCGI applications or to convert existing node applications to FastCGI.
12
+
This module is a drop-in replacement for node's standard http module (server only). Code written for a http server should work without changes with FastCGI. It can be used to build FastCGI applications or to convert existing node applications to FastCGI.
13
13
14
14
The implementation is fully compliant with the [FastCGI 1.0 Specification](https://fast-cgi.github.io/spec).
@@ -143,7 +151,7 @@ The socket object exposes three additional properties:
143
151
http module compatibility
144
152
-------------------------
145
153
146
-
The API is almost compatible with http module from node v0.12 all the way to v6.2 (the current version). Only the server API is implemented.
154
+
The API is almost compatible with the http module from node v0.12 all the way to v6.x (the current series). Only the server API is implemented.
147
155
148
156
Differences:
149
157
- A FastCGI server will never emit `'checkContinue'` and `'connect'` events because `CONNECT` method and `Expect: 100-continue` headers should be handled by the front-end http server
0 commit comments