Node.js - 02 Hello World!
JavaScript
下載 Node.js
Ubuntu 20.04.6 LTS
如果跟我一樣使用 WSL,可以參考我的作法
到此頁面選擇安裝的版本、環境、管理工具。
底下就有安裝說明 ,依照步驟輸入指令。
# installs nvm (Node Version Manager) curl -o- <https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh> | bash # download and install Node.js (you may need to restart the terminal) nvm install 20 # verifies the right Node.js version is in the environment node -v # should print `v20.14.0` # verifies the right NPM version is in the environment npm -v # should print `10.7.0`
嘗試在網頁上顯示 “Hello World”
建立資料夾,使用 vscode 打開該資料夾
$ mkdir NodeJS && cd NodeJS && code .
建立一個 Node.js 檔案,取名為 “myfirst.js”,添加以下程式碼 :
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end('Hello World!'); }).listen(8080);
啟動 Node.js
Node.js 必須要在 CLI 啟動。
$ node myfirst.js