Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const server = http.createServer((req, res) => {
res.write(typeof data);
res.end();
} catch (er) {
// uh oh! bad json!
// uh oh! bad json!
res.statusCode = 400;
return res.end(`error: ${er.message}`);
}
Expand All @@ -143,12 +143,12 @@ const server = http.createServer((req, res) => {

server.listen(1337);

// $ curl localhost:1337 -d '{}'
// $ curl localhost:1337 -d "{}"
// object
// $ curl localhost:1337 -d '"foo"'
// $ curl localhost:1337 -d "\"foo\""
// string
// $ curl localhost:1337 -d 'not json'
// error: Unexpected token o
// $ curl localhost:1337 -d "not json"
// error: Unexpected token o in JSON at position 1
```

[Writable][] streams (such as `res` in the example) expose methods such as
Expand Down