Skip to content

Commit 63ab4fd

Browse files
save file
1 parent e8617f8 commit 63ab4fd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

blog/25-07-24/http-server/http-server.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,31 @@ <h4 class=blog-hdr>
285285

286286

287287

288+
<div class=blog-text>
289+
290+
<h4>
291+
<a href='https://nodejs.org/api/http.html' target='_blank'>
292+
Node.js | HTTP
293+
<span class=link-domain>
294+
nodejs.org
295+
</span>
296+
</a>
297+
</h4>
298+
299+
<p>
300+
This module, containing both a client and server, can be imported via require('node:http') (CommonJS) or
301+
import * as http from 'node:http' (ES module).
302+
</p>
303+
<p>
304+
The HTTP interfaces in Node.js are designed to support many features of the protocol which have been
305+
traditionally difficult to use. In particular, large, possibly chunk-encoded, messages. The interface
306+
is careful to never buffer entire requests or responses, so the user is able to stream data.
307+
</p>
308+
309+
</div>
310+
311+
312+
288313
</body>
289314

290315
<script>

0 commit comments

Comments
 (0)