Update request.js
Replaced 'request' with 'http' in the example
This commit is contained in:
parent
5a936bab20
commit
4be10dfa8f
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ The following example illustrates how to use http.request to make a request to a
|
|||
|
||||
```javascript
|
||||
var jsResponse;
|
||||
var http = require('request');
|
||||
var http = require('http');
|
||||
http.request('http://scriptcraftjs.org/sample.json',function(responseCode, responseBody){
|
||||
jsResponse = JSON.parse( responseBody );
|
||||
});
|
||||
|
|
Reference in a new issue