升個華下
commonjs
nodejs模塊
自定義模塊
是什么

當然上面講過了核心模塊!

------------------------------------------------------------------------------------------------------------------
他的規(guī)定是什么?

1,暴露
2,引入
const http=require('http');
function formatApi(api) {
? ?return "http://www.happy study.com/"+api;
}
http.createServer((req,res)=>{
? ?res.writeHead(200,{'Content-Type':"text/html;charset='utf-8'"});
? ?res.write("<head><meta charset='UTF-8'></head>");
? ?var api=formatApi('api/plist');
? ?res.write('你好哇~來學習呀');
? ?res.write(api);
? ?res.end();
}).listen(5000);
標簽: