什么是NodeJS?
nodeJs是单线程、异步、事件驱动
特点:快、消耗内存多(一个百万级的并发测试,在未优化情况下1M连接消耗了16G内存)
优点:性能高、开发效率高(省不少优化的事)、应用范围广(可以开发桌面系统)
缺点:中间件少、IDE不完善。
热门框架:Express(完善,稳点,文档全,社区大)
创建一个Serve?
var http = require("http");
http.createServer(function(requset,response){
response.writeHead(200,{'Content-Type':'text/html; charset=utf-8'});//第一个参数为状态码,第二个参数确定是什么文件.
if (request.url !== '/favicon.ico'){ //通过IF语句判断屏蔽404错误
response.write('hello word');//准备给前端写内容,可以写好多write
response.end(); //向前端返回数据
}
}).listen(8000);
console.log('Server running at http://localhost:8000');
CommonJS?
可以新建一个name.js的文件用commonJS规范写
module.exports = {
name:"zhangsan",
sayName:function(){
return this.name;
}
}
在前面创建server的文件里写
var name = require("./name,js"); //引入暴露的模块
response.write(name.sayName());