升个华下
commonjs
nodejs模块
自定义模块
是什么

当然上面讲过了核心模块!

------------------------------------------------------------------------------------------------------------------
他的规定是什么?

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);