Rumah >hujung hadapan web >tutorial js >Memahami Modul HTTP Node.js
Keupayaan teras:
http.createServer()
Contoh ilustrasi:
<code class="language-javascript">const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello, Node.js HTTP Module!'); }); server.listen(3000, () => console.log('Server running on http://localhost:3000'));</code>Modul HTTP Node.js berfungsi sebagai titik kemasukan yang sangat baik untuk pemaju backend yang bercita -cita. Terokai keupayaannya dan buka kunci potensi untuk membina pelbagai aplikasi pelayan.
nodejs #javascript #httpmodule #backenddevelopment #learncoding
Atas ialah kandungan terperinci Memahami Modul HTTP Node.js. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!