讓 JavaScript 無處不在
Node.js® 是一個免費、開源、跨平臺的 JavaScript 執行時環境,讓開發者可以建立伺服器、Web 應用、命令列工具和指令碼。
// server.mjs
import { } from 'node:http';
const = ((, ) => {
.(200, { 'Content-Type': 'text/plain' });
.('Hello World!\n');
});
// starts a simple http server locally on port 3000
.(3000, '127.0.0.1', () => {
.('Listening on 127.0.0.1:3000');
});
// run with `node server.mjs`
透過我們的學習資料,瞭解更多 Node.js 的功能。