doc: add deprecated function http.createClient()

Appears in a lot of old code and core tests. Documented to show it
is deprecated.

Closes #1613.
This commit is contained in:
Kyle Robinson Young 2012-04-22 21:37:37 -07:00 committed by Ben Noordhuis
parent ea50ebd36d
commit 491c8d92b8

View File

@ -32,6 +32,12 @@ Returns a new web server object.
The `requestListener` is a function which is automatically
added to the `'request'` event.
## http.createClient([port], [host])
This function is **deprecated**; please use
[http.request()](#http_http_request_options_callback) instead. Constructs a new
HTTP client. `port` and `host` refer to the server to be connected to.
## Class: http.Server
This is an `EventEmitter` with the following events: