diff --git a/doc/api/http.md b/doc/api/http.md index a50bd445c17faa..12ae7b5e5167a6 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2287,7 +2287,7 @@ The `callback` is invoked with a single argument that is an instance of JSON fetching example: ```js -http.get('http://nodejs.org/dist/index.json', (res) => { +http.get('http://localhost:8000/', (res) => { const { statusCode } = res; const contentType = res.headers['content-type']; @@ -2322,6 +2322,16 @@ http.get('http://nodejs.org/dist/index.json', (res) => { }).on('error', (e) => { console.error(`Got error: ${e.message}`); }); + +// Create a local server to receive data from +const server = http.createServer((req, res) => { + res.writeHead(200, { 'Content-Type': 'application/json' }); + res.end(JSON.stringify({ + data: 'Hello World!' + })); +}); + +server.listen(8000); ``` ## `http.globalAgent`