iT邦幫忙

2022 iThome 鐵人賽

DAY 1
0

1. 安裝 Node.js

nodeJS.png

安裝 Node.js ,這裡有兩個版本分別為穩定版和最新版,這可以具你的喜好安裝。

若要檢查 Node.js 是否正確安裝,可以使用以下的指令:

node -v

2. 第一支 Node.js 程式

首先開啟資料夾新增一個 index.js 的檔案,這支檔案就來實作我們第一個 web server。

//透過http模組啟動web server服務const http = require('http')

const server = http.createServer(function (req, res) {
//設定回應為text文件,並回應 Hello World!
  res.writeHead(200,{'Content-Type':'text/plain'})
  res.end('Hello World!')
})

//設定服務監聽localhost:3000(127.0.0.1/:3000)
server.listen('3000', function () {
  console.log('server start on 3000 port')
})

之後在終端機輸入 node index.js 啟動檔案

https://ithelp.ithome.com.tw/upload/images/20171213/20107247hUxVDyCpfZ.png

顯示出來 console.log 的內容了! 接著試著在網頁上輸入 localhost:3000 你會發現你寫的 Hello world 回應在網頁上了

https://ithelp.ithome.com.tw/upload/images/20171213/20107247UgfSkr27VN.png

結論

現在想學Node.js主要還是前端有一些需求希望前端自己去寫RESTFUL API所以我基本上覺得基於這個理由,我會下海來去學Node.js來寫至少一兩個API出來讓自己玩玩。


下一篇
[Day2] 先快速了解javascript
系列文
當別人問你Node.js要假裝會的時候2
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言