伴着《媽是心中的茉莉花》
這裏,我用的sublime記事本,因此用的運行方法是終端。(後來發現git 能夠省去cd切換目錄)。
安裝node.js 官網說的很清楚。
這裏咱們能夠在js文件中簡單輸入 獲得當前時間的方法。
(0)
var oDate = new Date();
var oY = oDate.getFullYear();
var oM = oDate.getMonth();
var oD = oDate.getDate();
var oH = oDate.getHours();
var om = oDate.getMinutes();
var oS = oDate.getSeconds();
console.log('時間是:'+oY+'年'+oM+'月'+oD+'日 '+oH+':'+om+':'+oS);
運行時 node xxx.js //xxx改文件的名字
(1)
const http = require('http');
//用這個引用的模塊 建立一個服務器
var server = http.createServer(function(req,res){
console.log('有人來了‘);’
})
//request 請求 輸入-請求的信息 [服務器來講:被動]
//response 響應 輸出-輸出的東西 [服務器來講:主動]
server.listen(8080);
//注意這個8080極可能衝突 因此就隨便了。 => 8088
(2)
const http=require('http');
var server=http.createServer(function (req, res){
//console.log('有人來了');
res.write("abcn");
// n轉行
res.write("abc");
res.write("abc");
res.write("abc");
res.write("abc");
res.end();
//回掉函數中 res(response)有兩個方法
//res.write(); 寫
//res.end(); 結束
});
//監聽——等着
//端口-數字
server.listen(8080);
//http://localhost:8080/
(3)
const http=require('http');
//請求中有不少東西。 這裏咱們主要用地址 req.url
var server=http.createServer(function (req, res){
switch(req.url){
case '/1.html':
res.write("111111");
break;
case '/2.html':
res.write("2222");
break;
default:
res.write('404');
break;
}
res.end();
});
//監聽——等着
//端口-數字
server.listen(8080);
//http://localhost:8080/
//歌詞
個人夢想盡管付出不必定有回報
可是我想要努力可以把我夢想達到php
因此個人媽媽請你不要感到焦躁html
我會像全部人證實我是你最大的驕傲node
轉載於猿2048:➸《node.js0-5初級者》git